forked from nowsecure/nowsecure-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.37 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
{
"name": "nowsecure-action",
"version": "3.1.0",
"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 -o dist/nowsecure-upload-app -s src/nowsecure-upload-app.ts && ncc build -o dist/nowsecure-convert-sarif -s src/nowsecure-convert-sarif.ts && ncc build -o dist/nowsecure-create-issues -s src/nowsecure-create-issues.ts",
"test": "jest"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@types/jest": "27.4.1",
"@types/lodash": "4.14.184",
"@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",
"jest": "27.5.1",
"nock": "13.2.4",
"prettier": "2.5.1",
"ts-jest": "27.1.4",
"typescript": "4.5.4"
},
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "5.0.1",
"@actions/http-client": "1.0.11",
"@octokit/action": "4.0.10",
"liquidjs": "9.42.0",
"lodash": "4.17.21",
"octokit": "2.0.4",
"ripgrep-js": "3.0.0",
"yaml": "1.10.2"
}
}