-
Notifications
You must be signed in to change notification settings - Fork 212
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.21 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.21 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
45
46
47
48
{
"name": "root",
"private": true,
"packageManager": "pnpm@10.24.0",
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.32.0",
"chalk": "^4.1.1",
"cross-env": "^7.0.3",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-n": "^17.21.2",
"eslint-plugin-promise": "^7.2.1",
"globals": "^15.13.0",
"husky": "^9.1.7",
"inquirer": "^8.0.0",
"lint-staged": "^11.2.6",
"mocha": "^11.7.1",
"prettier": "^3.6.2",
"semver": "^7.7.2",
"should": "^13"
},
"scripts": {
"test": "pnpm -r test",
"smoke-test": "pnpm -r --if-present smoke-test",
"lint": "pnpm -r lint",
"lint:fix": "pnpm -r lint:fix",
"lint-examples": "eslint examples",
"validate": "pnpm -r validate",
"bump": "./scripts/bump.js",
"prepare": "husky",
"generate-types": "cd schema-to-ts && pnpm generate-types"
},
"lint-staged": {
"*.js": [
"eslint --fix --quiet"
],
"*.{js,json}": [
"prettier --write --ignore-path=.prettierignore"
]
},
"prettier": {
"singleQuote": true
}
}