-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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": "@miragon/sarif-report-parse",
"version": "1.0.3",
"private": true,
"description": "Parses a SARIF report and logs its vulnerabilities",
"author": "Andreas Riepl <[email protected]>",
"homepage": "https://github.com/Miragon/sarif-report-parse",
"bugs": {
"url": "https://github.com/Miragon/sarif-report-parse/issues"
},
"license": "Apache-2.0",
"files": [
"dist"
],
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "ssh://[email protected]/Miragon/sarif-report-parse.git"
},
"scripts": {
"build": "eslint src && tsc",
"dist": "eslint src && ncc cache clean && ncc build src/index.ts -o dist --minify --no-cache --target es2019 --license licenses.txt",
"lint": "eslint src"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@actions/glob": "^0.4.0"
},
"devDependencies": {
"@types/sarif": "^2.1.4",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.45.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"typescript": "^5.1.6"
},
"engines": {
"node": "*"
}
}