-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
71 lines (71 loc) · 1.75 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "prettier-plugin-package",
"version": "1.4.0",
"description": "An opinionated package.json formatter plugin for Prettier",
"license": "MPL-2.0",
"repository": "shellscape/prettier-plugin-package",
"author": "shellscape",
"homepage": "https://github.com/shellscape/prettier-plugin-package",
"bugs": "https://github.com/shellscape/prettier-plugin-package/issues",
"main": "lib/index.js",
"engines": {
"node": ">=10.13.0"
},
"scripts": {
"ci:coverage": "nyc npm run ci:test && nyc report --reporter=text-lcov > coverage.lcov",
"ci:lint": "npm run lint && npm run security",
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
"ci:test": "npm run test -- --verbose",
"commitlint": "commitlint",
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "eslint --fix --cache lib test && prettier --write package.json",
"lint-staged": "lint-staged",
"prepublishOnly": "npm run lint",
"security": "npm audit",
"test": "ava"
},
"files": [
"lib/",
"README.md",
"LICENSE"
],
"keywords": [
"package",
"package.json",
"plugin",
"prettier"
],
"peerDependencies": {
"prettier": "^2.0.0 || ^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"ava": "^5.3.1",
"eslint-config-shellscape": "^6.0.1",
"execa": "^4.1.0",
"lint-staged": "^13.2.2",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"prettier": "^2.8.8"
},
"ava": {
"files": [
"!**/fixtures/**"
]
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"nyc": {
"include": [
"lib/*.js"
],
"exclude": [
"test/"
]
},
"pre-commit": "lint-staged"
}