forked from keithamus/sort-package-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.12 KB
/
package.json
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": "sort-package-json",
"version": "0.0.0-development",
"description": "Sort an Object or package.json based on the well-known package.json keys",
"keywords": [
"keys",
"object",
"sort"
],
"homepage": "https://github.com/keithamus/sort-package-json#readme",
"bugs": {
"url": "https://github.com/keithamus/sort-package-json/issues"
},
"license": "MIT",
"author": "Keith Cirkel <npm@keithcirkel.co.uk> (http://keithcirkel.co.uk/)",
"files": [
"index.js"
],
"main": "index.js",
"bin": "index.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/keithamus/sort-package-json.git"
},
"scripts": {
"semantic-release": "travis-after-all && semantic-release pre && npm publish && semantic-release post",
"test": "node test.js"
},
"config": {
"ghooks": {
"pre-commit": "npm t",
"commit-msg": "validate-commit-msg"
}
},
"dependencies": {
"sort-object-keys": "^1.1.1"
},
"devDependencies": {
"ghooks": "^1.0.1",
"semantic-release": "^4.3.5",
"travis-after-all": "^1.4.4",
"validate-commit-msg": "^2.0.0"
}
}