-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
65 lines (65 loc) · 2.13 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
{
"name": "prettier-plugin-sort-json",
"version": "4.1.0",
"description": "Prettier plugin to sort JSON files alphanumerically by key",
"repository": {
"type": "git",
"url": "https://github.com/Gudahtt/prettier-plugin-sort-json.git"
},
"license": "MIT",
"author": "Mark Stacey <[email protected]>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"lint": "yarn lint:eslint && yarn lint:misc --check",
"lint:eslint": "eslint . --cache",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier '**/*.json' '**/*.json5' '**/*.md' '**/*.yml' '!.yarnrc.yml' '!fixtures/invalid-json.json' --ignore-path .gitignore",
"prepack": "./scripts/prepack.sh",
"test": "tsc --project tsconfig.test.json && ava",
"test:coverage": "tsc --project tsconfig.test.json && c8 --config ./.c8rc.json ava"
},
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@babel/types": "^7.18.10",
"@lavamoat/allow-scripts": "^3.0.0",
"@lavamoat/preinstall-always-fail": "^2.0.0",
"@metamask/auto-changelog": "^4.0.0",
"@metamask/eslint-config": "^14.0.0",
"@metamask/eslint-config-nodejs": "^14.0.0",
"@metamask/eslint-config-typescript": "^14.0.0",
"@types/node": "^20.11.28",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"ava": "^6.0.0",
"c8": "^10.1.2",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import-x": "^4.3.0",
"eslint-plugin-jsdoc": "^50.0.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^7.0.0",
"prettier": "^3.0.0",
"prettier-plugin-packagejson": "^2.2.11",
"typescript": "~5.5.0",
"typescript-eslint": "^8.16.0"
},
"peerDependencies": {
"prettier": "^3.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
},
"lavamoat": {
"allowScripts": {
"@lavamoat/preinstall-always-fail": false
}
}
}