-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
84 lines (84 loc) · 2.71 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "attack-workbench-rest-api",
"version": "2.0.1",
"attackSpecVersion": "3.2.0",
"description": "An application allowing users to explore, create, annotate, and share extensions of the MITRE ATT&CK® knowledge base. This repository contains the REST API service for storing, querying, and editing ATT&CK objects.",
"keywords": [
"cti",
"cyber-threat-intelligence",
"attack",
"mitre-attack",
"mitre-corporation",
"ctid",
"center-for-threat-informed-defense",
"cybersecurity",
"stix"
],
"license": {
"type": "Apache-2.0",
"url": "https://opensource.org/licenses/apache2.0.php"
},
"main": "index.js",
"scripts": {
"coverage:cobertura": "c8 --reporter=cobertura npm test",
"coverage:text": "c8 npm test",
"lint": "eslint .",
"snyk": "snyk test --insecure --fail-on=upgradable",
"start": "node ./bin/www",
"test": "npm run test:openapi && npm run test:config && npm run test:api",
"test:api": "mocha --timeout 10000 --recursive ./app/tests/api",
"test:config": "mocha --timeout 10000 --recursive ./app/tests/config",
"test:import": "mocha --timeout 10000 --recursive ./app/tests/import",
"test:openapi": "mocha --timeout 10000 ./app/tests/openapi",
"test:authn": "./app/tests/run-mocha-separate-jobs.sh ./app/tests/authn",
"test:fuzz": "mocha --timeout 10000 --recursive ./app/tests/fuzz"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^10.1.0",
"async": "^3.2.4",
"async-await-retry": "^1.2.3",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"convict": "^6.2.4",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-openapi-validator": "^4.13.8",
"express-session": "^1.17.3",
"helmet": "^4.6.0",
"jsonwebtoken": "^9.0.0",
"jwks-rsa": "^3.0.1",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"migrate-mongo": "^9.0.0",
"mongoose": "^6.12.0",
"morgan": "^1.10.0",
"nanoid": "^3.3.6",
"node-cache": "^5.1.2",
"openid-client": "^5.4.2",
"passport": "^0.6.0",
"passport-anonym-uuid": "^1.0.3",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"semver": "^7.5.4",
"superagent": "^8.0.9",
"swagger-ui-express": "^4.6.2",
"uuid": "^9.0.0",
"winston": "^3.8.2"
},
"devDependencies": {
"c8": "^7.13.0",
"cookie": "^0.5.0",
"eslint": "^8.39.0",
"expect": "^29.5.0",
"json-diff": "^1.0.3",
"mocha": "^10.2.0",
"mongodb-memory-server": "^8.12.2",
"openapi-schema-validator": "^12.1.0",
"parse5": "^7.1.2",
"parse5-query-domtree": "^1.0.2",
"read-json-lines-sync": "^2.2.5",
"set-cookie-parser": "^2.6.0",
"snyk": "^1.1150.0",
"supertest": "^6.3.3"
}
}