-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.31 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.31 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
49
50
{
"name": "eslint-packages",
"description": "Packages for ESLint",
"private": true,
"scripts": {
"lint": "eslint",
"lint-ci": "eslint -f @microsoft/eslint-formatter-sarif -o build/eslint-results.sarif",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git@github.com:bluecatengineering/eslint-packages.git"
},
"devDependencies": {
"@babel/plugin-syntax-import-attributes": "^7.24.1",
"@bluecateng/commitlint-config-bluecateng": "^1.0.1",
"@bluecateng/git-check-push": "^1.0.0",
"@bluecateng/prettier-config": "^1.0.0",
"@commitlint/cli": "^20.3.0",
"@commitlint/config-conventional": "^20.3.0",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-yaml": "^4.1.2",
"eslint": "^9.0.0",
"husky": "^9.0.10",
"lerna": "^9.0.3",
"lint-staged": "^16.0.0",
"prettier": "^3.2.4",
"rollup": "^4.9.6"
},
"workspaces": [
"packages/*"
],
"prettier": "@bluecateng/prettier-config",
"commitlint": {
"extends": [
"@bluecateng/commitlint-config-bluecateng"
]
},
"lint-staged": {
"*.{js,mjs}": [
"eslint --fix --max-warnings 0",
"prettier --write"
],
"*.{md,yml}": [
"prettier --write"
]
}
}