forked from SortableJS/knockout-sortablejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.29 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "knockout-sortablejs",
"version": "1.2.1",
"description": "A Knockout.js binding to SortableJS.",
"main": "knockout-sortable.js",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"semantic-release": "source .env && export GITHUB_TOKEN && semantic-release",
"release": "npm run semantic-release"
},
"repository": "github:mig8447/knockout-sortablejs",
"keywords": [
"knockout",
"sortable"
],
"author": "srosengren <sebastian@rosengren.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SortableJS/knockout-sortablejs/issues"
},
"homepage": "https://github.com/mig8447/knockout-sortablejs#readme",
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.1",
"@semantic-release/npm": "^7.1.0",
"@semantic-release/release-notes-generator": "^9.0.2",
"husky": "^4.3.8",
"semantic-release": "^17.4.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"peerDependencies": {
"knockout": "^3.5.1",
"sortablejs": "^1.13.0"
}
}