-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 1.75 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "purpleteam-server-scanner",
"version": "0.1.0-alpha.0",
"description": "Server scanning component of purpleteam -- security regression testing SaaS",
"main": "index.js",
"bin": {},
"scripts": {
"lint": "eslint .",
"test": "nyc --reporter=lcov --reporter=text-summary ava",
"test:nolint": "nyc --reporter=lcov --reporter=text-summary ava",
"test:debug": "ava debug --break ./test/api/server/models/app.js",
"pretest": "npm run lint",
"debug": "node --inspect-brk ./index.js",
"start": "node ./index.js"
},
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/purpleteam-labs/purpleteam-server-scanner.git"
},
"keywords": [
"agile",
"application security",
"bdd",
"behaviour driven development",
"blue team",
"ci",
"cloud security",
"continuous deployment",
"continuous integration",
"cybersecurity",
"dev sec ops",
"red team",
"security",
"selenium",
"infosec",
"information security",
"tools",
"devsecops",
"devops",
"dev ops",
"purpleteam",
"owasp",
"penetration testing",
"purpleteam",
"security",
"security regression testing",
"software security",
"web application security",
"web security"
],
"author": "Kim Carter",
"license": "BSL",
"bugs": {
"url": "https://github.com/purpleteam-labs/purpleteam/issues"
},
"homepage": "https://purpleteam-labs.com",
"dependencies": {},
"devDependencies": {
"ava": "^3.15.0",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-ava": "^13.1.0",
"eslint-plugin-import": "^2.25.3",
"nyc": "^15.1.0"
},
"files": [
"LEGALNOTICE.md",
"licenses"
]
}