-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.49 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.49 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
{
"name": "security-tools",
"version": "0.0.1",
"type": "module",
"description": "A collection of GitHub Actions Required Workflows for enforcing security policies",
"scripts": {
"build": "npm install && npm run build:bypass:add-user && npm run build:bypass:remove-user && npm run build:enforce:codeql && npm run build:enforce:required-properties && npm run build:enforce:remediation",
"build:bypass:add-user": "ncc build bypass/add-user/index.js -o bypass/add-user/dist",
"build:bypass:remove-user": "ncc build bypass/remove-user/index.js -o bypass/remove-user/dist",
"build:enforce:codeql": "ncc build enforce/codeql/index.js -o enforce/codeql/dist",
"build:enforce:required-properties": "ncc build enforce/required-properties/index.js -o enforce/required-properties/dist",
"build:enforce:remediation": "ncc build enforce/remediation/index.js -o enforce/remediation/dist"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/department-of-veterans-affairs/security-tools.git"
},
"author": "GitHub Expert Services",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/department-of-veterans-affairs/security-tools/issues"
},
"homepage": "https://github.com/department-of-veterans-affairs/security-tools#readme",
"devDependencies": {
"@vercel/ncc": "^0.38.1"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@octokit/plugin-retry": "^7.0.3",
"@octokit/plugin-throttling": "^9.0.3",
"@octokit/rest": "^20.0.2"
}
}