-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
39 lines (39 loc) · 1.54 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
{
"name": "github-security-report",
"version": "2.0.0",
"description": "Generates a report from GitHub CodeQL and Dependency information",
"scripts": {
"build": "tsc",
"pre-build-exe": "npm run build && ncc build lib/executable.js -o runtime",
"build-exe-linux-x64": "npm run pre-build-exe && nexe -i runtime/index.js -t linux-x64-12.16.2 -o github-security-report-linux-x64",
"build-exe-mac-x64": "npm run pre-build-exe && nexe -i runtime/index.js -t mac-x64-12.16.2 -o github-security-report-mac-x64",
"build-exe-windows-x64": "npm run pre-build-exe && nexe -i runtime/index.js -t windows-x64-12.16.2 -o github-security-report",
"package": "npm run build && ncc build --source-map",
"postpack": "tarball=$(npm list - depth 0 | sed 's/@/-/g; s/ .*/.tgz/g; 1q;'); tar -tf $tarball | sed 's/^package\\///' | zip -@r github-security-report-bundle",
"test": "mocha --recursive -r ts-node/register \"src/**/*.test.ts\""
},
"keywords": [],
"author": "Peter Murray",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/io": "^1.0.2",
"@octokit/rest": "^18.0.15",
"commander": "^7.0.0",
"nunjucks": "^3.2.2",
"puppeteer-core": "^5.5.0"
},
"devDependencies": {
"@octokit/types": "^5.5.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^12.19.15",
"@types/puppeteer-core": "^2.1.0",
"@vercel/ncc": "^0.27.0",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"nexe": "^4.0.0-beta.17",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}