This repository has been archived by the owner on Dec 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
52 lines (52 loc) · 1.46 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
{
"name": "attack-workbench-collection-manager",
"version": "1.3.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 and services for managing collections, collection indexes, and collection subscriptions.",
"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": {
"lint": "eslint .",
"snyk": "snyk test --insecure --fail-on=upgradable",
"start": "node ./bin/www"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^9.1.0",
"async": "^3.2.4",
"body-parser": "^1.20.1",
"compression": "^1.7.4",
"convict": "^6.2.4",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-openapi-validator": "^4.13.8",
"helmet": "^4.6.0",
"jwt-decode": "^3.1.2",
"morgan": "^1.10.0",
"swagger-ui-express": "^4.5.0",
"superagent": "^8.0.9",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"eslint": "^8.25.0",
"expect": "^29.2.1",
"keycloak-admin-client": "^0.12.0",
"mocha": "^10.2.0",
"set-cookie-parser": "^2.5.1",
"snyk": "^1.1040.0",
"supertest": "^6.3.0"
}
}