-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
48 lines (48 loc) · 1.03 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
{
"name": "zaproxy",
"description": "ZAP API Client for Node.js",
"version": "2.0.0-rc.5",
"homepage": "https://github.com/zaproxy/zap-api-nodejs",
"author": {
"name": "Najam Ul Saqib",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/zaproxy/zap-api-nodejs.git"
},
"bugs": {
"url": "https://github.com/zaproxy/zap-api-nodejs/issues"
},
"licenses": [
{
"type": "Apache",
"url": "https://github.com/zaproxy/zap-api-nodejs/blob/main/LICENSE"
}
],
"main": "src/index.js",
"engines": {
"node": ">=17.0.0"
},
"scripts": {
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src"
},
"dependencies": {
"axios": "^1.3.3"
},
"keywords": [
"zaproxy",
"api",
"wrapper",
"security",
"infosec"
],
"devDependencies": {
"eslint": "^8.36.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1"
}
}