-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.13 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.13 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@zaproxy/actions-common-scans",
"version": "0.2.0",
"description": "ZAP scan common code",
"homepage": "https://github.com/zaproxy/actions-common/tree/master/packages/scans",
"license": "Apache-2.0",
"type": "module",
"exports": "./dist/index.js",
"engines": {
"node": ">=24"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint src/",
"lint:fix": "eslint --fix src/",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git@github.com:zaproxy/actions-common.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"ZAP",
"zaproxy"
],
"author": "ZAP Team",
"bugs": {
"url": "https://github.com/zaproxy/actions-common/issues"
},
"dependencies": {
"@actions/artifact": "^4.0.0",
"@babel/preset-env": "^7.24.4",
"@octokit/core": "^7.0.4",
"@octokit/plugin-request-log": "^6.0.0",
"@octokit/plugin-retry": "^8.0.1",
"@octokit/plugin-throttling": "^11.0.1",
"@octokit/rest": "^22.0.0",
"@octokit/types": "^16.0.0",
"adm-zip": "^0.5.10",
"babel-jest": "^30.2.0",
"jest-os-detection": "^1.3.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/preset-typescript": "^7.24.1",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^13.1.1",
"@semantic-release/release-notes-generator": "^14.0.0",
"@tsconfig/node24": "^24.0.1",
"@types/adm-zip": "^0.5.0",
"@types/fetch-mock": "^9.2.2",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.14.188",
"@types/node": "^24.6.2",
"@types/request": "^2.48.8",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^5.5.4",
"fetch-mock": "^12.5.4",
"jest": "^30.2.0",
"prettier": "^3.2.5",
"semantic-release": "^25.0.1",
"ts-jest": "^29.4.4",
"typescript": "^5.9.2"
}
}