-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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
{
"name": "eslint-plugin-no-secrets",
"version": "2.2.1",
"description": "An eslint rule that searches for potential secrets/keys in code",
"main": "./dist/index.js",
"types": "./index.d.ts",
"scripts": {
"build": "tsc",
"test": "npm run test:unit && npm run test:staging",
"test:unit": "ts-node tests/lib/rules",
"test:staging": "npm run build && node ./staging/staging.spec.js"
},
"keywords": [
"eslint",
"eslint-plugin",
"security",
"secure",
"secrets",
"lint",
"eslintplugin"
],
"author": "Nick Deis <nickjdeis@gmail.com>",
"repository": "https://github.com/nickdeis/eslint-plugin-no-secrets",
"license": "MIT",
"devDependencies": {
"@eslint/json": "^0.10.0",
"@types/eslint": "^9.6.1",
"@types/node": "^22.9.1",
"eslint": "^7.19.0",
"eslint-plugin-jsonc": "^2.15.1",
"eslint-plugin-self": "^1.2.0",
"eslint6": "npm:eslint@^6.8.0",
"eslint8": "npm:eslint@^8.57.0",
"eslint9": "npm:eslint@^9.19.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"peerDependencies": {
"eslint": ">=5"
},
"engines": {
"npm": ">=8",
"node": ">=18"
}
}