-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.37 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
{
"name": "purpleteam-build-test-cli",
"version": "1.1.0",
"description": "Used to test that the purpleteam CLI runs within a build pipeline successfully",
"exports": "./index.js",
"scripts": {
"// Don't forget to export any required env vars before running the purpleteam CLI. For example": "NODE_ENV=local and PURPLETEAM_UI=noUi",
"// Invoke purpleteam binary from NPM script": "npm run purpleteam",
"purpleteam": "NODE_ENV=local purpleteam",
"// Start your node app": "npm start",
"start": "NODE_ENV=local PURPLETEAM_UI=noUi node index.js",
"// Debug your node app": "npm run debugApp",
"debugApp": "NODE_ENV=local PURPLETEAM_UI=noUi node --inspect-brk=localhost:9230 index.js",
"// Debug your node app and the purpleteam CLI": "npm run debugAppAndCli",
"debugAppAndCli": "NODE_ENV=local PURPLETEAM_UI=noUi DEBUG_PURPLETEAM=true node --inspect-brk=localhost:9230 index.js"
},
"dependencies": {
"purpleteam": "*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/purpleteam-labs/purpleteam-build-test-cli.git"
},
"author": {
"name": "Kim Carter",
"email": "[email protected]"
},
"license": "MIT",
"type": "module",
"homepage": "https://purpleteam-labs.com",
"bugs": {
"url": "https://github.com/purpleteam-labs/purpleteam/issues"
},
"files": [
"LEGALNOTICE.md",
"licenses"
]
}