-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.1 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.1 KB
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": "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",
"types": "lib/index.d.cts",
"directories": {
"lib": "lib"
},
"files": [
"lib/index.cjs",
"lib/index.d.cts"
],
"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": "node --test --experimental-test-coverage --test-reporter=spec --test-reporter-destination=stdout --test-reporter=lcov --test-reporter-destination=lcov.info"
},
"dependencies": {
"sort-package-json": "^3.6.0"
},
"devDependencies": {
"npm-run-all2": "8.0.4",
"prettier": "^3.8.0"
},
"peerDependencies": {
"prettier": "^3"
},
"peerDependenciesMeta": {
"prettier": {
"optional": true
}
}
}