-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.35 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": "recognize-vulnerability-report-action",
"version": "1.0.0",
"description": "Create a report of the vulnerabilities that are found and add it as a comment to a pull request.",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"security"
],
"author": "Recognize B.V.",
"license": "LGPL-3.0",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"@octokit/webhooks-schemas": "^5.5.1",
"@octokit/webhooks-types": "^5.5.1",
"axios": "^0.26.1"
},
"devDependencies": {
"@octokit/types": "^6.34.0",
"@octokit/webhooks": "^9.23.0",
"@types/node": "^17.0.23",
"@typescript-eslint/parser": "^5.17.0",
"@vercel/ncc": "^0.33.3",
"eslint": "^8.12.0",
"eslint-plugin-github": "^4.3.6",
"eslint-plugin-jest": "^26.1.3",
"jest": "^27.5.1",
"js-yaml": "^4.1.0",
"prettier": "2.6.1",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}