-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.55 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
49
50
51
52
53
54
55
56
{
"name": "recognize-internal-security-assistant-action",
"version": "1.0.0",
"description": "Given an URL, this action creates a security report with some basic server settings.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test",
"preinstall": "npx npm-force-resolutions"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"risa",
"security"
],
"author": "Recognize B.V.",
"license": "LGPL-3.0",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"applicationinsights": "^2.4.1",
"axios": "^1.1.3",
"content-security-policy-parser": "^0.4.1",
"node-ssllabs": "^2.1.0",
"pac-proxy-agent": "^5.0.0",
"proxy-from-env": "^1.1.0"
},
"devDependencies": {
"@octokit/types": "^6.34.0",
"@octokit/webhooks": "^9.15.0",
"@types/node": "^18.11.7",
"@typescript-eslint/parser": "^5.41.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.26.0",
"eslint-plugin-github": "^4.4.0",
"eslint-plugin-jest": "^27.1.3",
"jest": "^29.2.2",
"js-yaml": "^4.1.0",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"resolutions": {
"proxy-agent": "4.0.1"
}
}