forked from matzkoh/prettier-plugin-packagejson
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 987 Bytes
/
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
{
"name": "prettier-plugin-packagejson",
"version": "0.0.0-development",
"description": "Prettier package.json plugin to make the order of properties nice.",
"keywords": [
"package.json",
"plugin",
"prettier"
],
"repository": "github:matzkoh/prettier-plugin-packagejson",
"license": "MIT",
"main": "lib",
"directories": {
"lib": "lib"
},
"files": [
"lib/**/*.js",
"!lib/**/*.test.js"
],
"scripts": {
"ci:test": "run-s test send:coverage",
"fix": "run-p fix:*",
"fix:prettier": "npm run lint:prettier -- --write",
"lint": "run-p lint:*",
"lint:prettier": "prettier -l \"**/*.{js,json,md,yaml,yml}\"",
"send:coverage": "npx codecov",
"test": "run-s lint test:*",
"test:unit": "jest"
},
"dependencies": {
"sort-package-json": "1.49.0"
},
"devDependencies": {
"jest": "26.6.3",
"npm-run-all": "4.1.5",
"prettier": "2.2.1"
},
"peerDependencies": {
"prettier": ">= 1.16.0"
}
}