-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.12 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
{
"name": "@contrast/eslint-config",
"version": "3.4.0",
"description": "Base ESLint configuration for Contrast NodeJS projects",
"repository": "Contrast-Security-OSS/eslint-config",
"license": "ISC",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"test": "eslint lib/"
},
"engines": {
"node": ">=16.9.1"
},
"devDependencies": {
"@types/eslint": "^8.4.5",
"@types/node": "^12.20.55",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-plugin-mocha": "^10.0.5",
"eslint-plugin-node": "^11.1.0"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-plugin-mocha": "^10.0.5",
"eslint-plugin-node": "^11.1.0"
},
"eslintConfig": {
"extends": [
"./lib/index.js"
],
"overrides": [
{
"files": [
"lib/rules/base.js"
],
"rules": {
"quote-props": [
"error",
"consistent"
]
}
}
]
}
}