forked from cameronhunter/prettier-package-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.21 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "prettier-package-json",
"description": "Prettier formatter for package.json files",
"license": "MIT",
"author": "Cameron Hunter <hello@cameronhunter.co.uk>",
"repository": {
"type": "git",
"url": "https://github.com/cameronhunter/prettier-package-json"
},
"bugs": "https://github.com/cameronhunter/prettier-package-json/issues",
"version": "2.1.3",
"main": "src/index.js",
"bin": {
"prettier-package-json": "./bin/prettier-package-json"
},
"files": [
"bin",
"src"
],
"scripts": {
"test": "jest",
"preversion": "npm test",
"version": "git push && git push --tags"
},
"dependencies": {
"commander": "^4.0.1",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"minimatch": "^3.0.4",
"parse-author": "^2.0.0",
"sort-object-keys": "^1.1.2",
"sort-order": "^1.0.1"
},
"devDependencies": {
"cross-spawn": "^7.0.1",
"husky": "^3.1.0",
"jest": "^24.9.0"
},
"keywords": [
"cleanup",
"formatter",
"json",
"keys",
"object",
"package",
"package.json",
"prettier",
"sort"
],
"husky": {
"hooks": {
"pre-commit": "./bin/prettier-package-json --write && git add package.json"
}
}
}