-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
47 lines (47 loc) · 1.06 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
{
"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/index.cjs",
"directories": {
"lib": "lib"
},
"files": [
"lib/**/*.js",
"!**/*.snap",
"!lib/**/*.test.js"
],
"scripts": {
"fix": "run-p fix:*",
"fix:prettier": "npm run lint:prettier -- --write",
"lint": "run-p lint:*",
"lint:prettier": "prettier -c .",
"test": "run-s lint test:*",
"test:unit": "cross-env NODE_OPTIONS=--experimental-vm-modules jest"
},
"dependencies": {
"sort-package-json": "2.10.1",
"synckit": "0.9.2"
},
"devDependencies": {
"cross-env": "7.0.3",
"jest": "29.7.0",
"npm-run-all2": "6.2.6",
"prettier": "3.3.3"
},
"peerDependencies": {
"prettier": ">= 1.16.0"
},
"peerDependenciesMeta": {
"prettier": {
"optional": true
}
}
}