-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1.38 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
{
"name": "vulnerability-auditor",
"version": "1.0.0",
"main": "index.js",
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"scripts": {
"archive-all": "npm run archive-linux && npm run archive-macos && npm run archive-windows",
"archive-linux": "tar -czvf linux-amd64.tgz linux-amd64",
"archive-macos": "tar -czvf macos-amd64.tgz macos-amd64",
"archive-windows": "tar -czvf windows-amd64.tgz windows-amd64",
"clean": "rm -rf linux-amd64 macos-amd64 windows-amd64 *.tgz",
"dist-all": "npm install && npm run dist-linux && npm run dist-macos && npm run dist-windows",
"dist-linux": "./node_modules/.bin/pkg -t node16-linux -o linux-amd64/vulnerability-auditor index.js",
"dist-macos": "./node_modules/.bin/pkg -t node16-darwin -o macos-amd64/vulnerability-auditor index.js",
"dist-windows": "./node_modules/.bin/pkg -t node16-win -o windows-amd64/vulnerability-auditor.exe index.js",
"package": "npm run dist-all && npm run archive-all"
},
"dependencies": {
"@octokit/plugin-retry": "^3.0.9",
"@octokit/plugin-throttling": "^3.5.2",
"@octokit/rest": "^18.12.0",
"commander": "^8.3.0"
},
"devDependencies": {
"eslint": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"pkg": "github:vercel/pkg"
}
}