-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.29 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.29 KB
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
46
47
48
{
"name": "@advanced-security/security-report-action",
"version": "0.0.1",
"description": "Generates reports from GitHub CodeQL and Dependency information",
"scripts": {
"build": "tsc",
"build-exe": "pkg package.json --compress Gzip",
"package": "npm run build && ncc build lib/index.js -o dist --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": "vitest --run"
},
"keywords": [],
"author": "Peter Murray",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/io": "^1.1.3",
"@octokit/rest": "^20.1.0",
"@puppeteer/browsers": "^2.3.0",
"commander": "^12.0.0",
"nunjucks": "^3.2.4",
"puppeteer-core": "^22.15.0"
},
"devDependencies": {
"@octokit/types": "^13.4.1",
"@types/node": "^20.12.7",
"@vercel/ncc": "^0.38.0",
"@yao-pkg/pkg": "^5.11.0",
"vitest": "^3.1.3",
"ts-node": "^10.9.1",
"typescript": "^5.4.5"
},
"bin": {
"cli": "lib/cli/cli.js"
},
"pkg": {
"targets": [
"node20-linux-x64",
"node20-win-x64",
"node20-macos-x64"
],
"assets": [
"package.json"
],
"publicPackages": "*",
"outputPath": "cli"
}
}