-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
45 lines (45 loc) · 1.42 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
{
"name": "nowsecure-action",
"version": "4.0.1",
"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": ">=20"
},
"devDependencies": {
"@types/jest": "29.5.11",
"@types/lodash": "4.14.202",
"@types/node": "20.11.10",
"@types/sarif": "2.1.7",
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
"@vercel/ncc": "0.38.1",
"eslint": "8.56.0",
"genversion": "3.2.0",
"jest": "29.7.0",
"nock": "13.5.1",
"prettier": "3.2.4",
"ts-jest": "29.1.2",
"typescript": "5.3.3"
},
"dependencies": {
"@actions/core": "1.10.1",
"@actions/github": "6.0.0",
"@actions/http-client": "2.2.0",
"@github/dependency-submission-toolkit": "2.0.3",
"@octokit/action": "6.0.7",
"liquidjs": "10.10.0",
"lodash": "4.17.21",
"octokit": "3.1.2",
"ripgrep-js": "3.0.0",
"yaml": "2.3.4"
}
}