-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "@cncsc/eslint-config",
"version": "0.0.0-development",
"description": "ESLint shareable configuration for CNCSC projects.",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:cncsc/eslint-config.git"
},
"author": {
"name": "Cloud-Native Cybersecurity Collective",
"email": "[email protected]",
"url": "https://www.cncsc.io/"
},
"contributors": [
{
"name": "Armor Defense Inc.",
"email": "[email protected]",
"url": "https://www.armor.com/"
}
],
"license": "Apache-2.0",
"scripts": {
"lint": "eslint -c ./index.js ./ --ext .js"
},
"devDependencies": {
"@cncsc/semantic-release-config": "^1.0.3",
"eslint": "^8.49.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.28.1"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": ">=6",
"@typescript-eslint/parser": ">=6",
"eslint": ">=8",
"eslint-plugin-eslint-comments": ">=3",
"eslint-plugin-import": ">=2"
},
"publishConfig": {
"access": "public"
}
}