forked from AikidoSec/github-actions-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 869 Bytes
/
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
{
"name": "ensure-no-vulnerabilities-action",
"version": "1.0.0",
"private": "true",
"description": "",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/parser": "^5.49.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-github": "^4.6.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.8.3",
"typescript": "^4.9.4"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@actions/http-client": "^2.0.1"
}
}