-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.4 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.4 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,
"type": "module",
"scripts": {
"test": "node --test",
"test-ci": "mkdir -p build && node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=build/lcov.info --test-reporter=junit --test-reporter-destination=build/junit.xml",
"lint": "eslint .",
"lint-ci": "eslint . -f @microsoft/eslint-formatter-sarif -o build/eslint-results.sarif",
"reformat": "prettier --write \"**/*.+(js|json|less)\"",
"prepack": "npm t",
"prepare": "husky"
},
"devDependencies": {
"@bluecateng/commitlint-config-bluecateng": "^1.0.2",
"@bluecateng/eslint-config-node": "^5.0.2",
"@bluecateng/git-check-push": "^1.0.1",
"@bluecateng/prettier-config": "^1.0.0",
"@commitlint/cli": "^20.3.0",
"@commitlint/config-conventional": "^20.3.0",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"esbuild": "^0.28.0",
"eslint": "^9.19.0",
"husky": "^9.0.11",
"lerna": "^9.0.3",
"lint-staged": "^16.1.5",
"prettier": "^3.3.2",
"stylelint-test-rule-node": "^0.4.0"
},
"workspaces": [
"packages/*"
],
"prettier": "@bluecateng/prettier-config",
"commitlint": {
"extends": [
"@bluecateng/commitlint-config-bluecateng"
]
},
"lint-staged": {
"*.js": [
"eslint --fix --max-warnings 0",
"prettier --write"
],
"*.{md,yaml}": [
"prettier --write"
]
}
}