forked from nowsecure/nowsecure-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 854 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
{
"name": "nowsecure-action",
"version": "1.0.3",
"main": "dist/index.js",
"license": "MIT",
"author": "Keegan Saunders <[email protected]>",
"scripts": {
"build": "genversion -d --es6 --semi src/nowsecure-version.ts && tsc",
"lint": "eslint src/**/*.ts && prettier --check **/*.ts",
"format": "prettier --write .",
"prepare-release": "yarn build && ncc build -s src/nowsecure-action.ts"
},
"devDependencies": {
"@types/node": "17.0.7",
"@types/sarif": "2.1.4",
"@typescript-eslint/eslint-plugin": "5.9.0",
"@typescript-eslint/parser": "5.9.0",
"@vercel/ncc": "0.33.1",
"eslint": "8.6.0",
"genversion": "3.0.2",
"prettier": "2.5.1",
"typescript": "4.5.4"
},
"dependencies": {
"@actions/core": "1.6.0",
"@actions/http-client": "1.0.11",
"ripgrep-js": "3.0.0"
}
}