-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "eslint-plugin-prototype-pollution",
"version": "0.1.8",
"description": "Detect the use of prototype pollution vulnerabilities",
"homepage": "https://github.com/bsShoham/eslint-plugin-prototype-pollution",
"repository": {
"type": "git",
"url": "git+https://github.com/bsShoham/eslint-plugin-prototype-pollution.git"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"prototype-pollution"
],
"author": "bsShoham",
"main": "./lib/index.js",
"scripts": {
"lint": "npm-run-all \"lint:*\"",
"lint:eslint-docs": "npm-run-all \"update:eslint-docs -- --check\"",
"lint:js": "eslint .",
"test": "mocha tests --recursive",
"update:eslint-docs": "eslint-doc-generator"
},
"dependencies": {
"requireindex": "^1.2.0"
},
"devDependencies": {
"eslint": "^9.7.0",
"eslint-doc-generator": "^1.7.1",
"eslint-plugin-eslint-plugin": "^6.2.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^10.6.0",
"npm-run-all": "^4.1.5"
},
"engines": {
"node": "^14.17.0 || ^16.0.0 || >= 18.0.0"
},
"peerDependencies": {
"eslint": ">=7"
},
"license": "MIT",
"types": "./types/index.d.ts"
}