-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
106 lines (106 loc) · 2.74 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@mitre-attack/attack-data-model",
"version": "0.0.0-semantically-released",
"description": "A TypeScript API for the MITRE ATT&CK data model",
"license": "APACHE-2.0",
"private": false,
"keywords": [
"mitre",
"attack",
"typescript",
"api",
"adm",
"attack-data-model",
"cti"
],
"homepage": "https://github.com/mitre-attack/attack-data-model#readme",
"bugs": {
"url": "https://github.com/mitre-attack/attack-data-model/issues",
"email": "attack@mitre.org"
},
"repository": {
"type": "git",
"url": "https://github.com/mitre-attack/attack-data-model.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"author": {
"name": "MITRE ATT&CK",
"email": "attack@mitre.org"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "rm -rf dist && npm run build",
"test": "vitest --run",
"test:interactive": "vitest",
"export": "npm pack",
"clean": "rm -rf test/**/*.js test/**/*.js.map test/**/*.d.ts test/**/*.ts.map src/**/*.js src/**/*.js.map src/**/*.d.ts",
"prepare": "husky || true",
"lint": "npx eslint src",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier src --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix"
},
"contributors": [
{
"name": "Sean Sica",
"email": "ssica@mitre.org",
"url": "https://github.com/seansica"
},
{
"name": "Charissa Miller",
"email": "clmiller@mitre.org",
"url": "https://github.com/clemiller"
},
{
"name": "Anjali Pare",
"email": "apare@mitre.org",
"url": "https://github.com/adpare"
},
{
"name": "Erin Hall",
"email": "halle@mitre.org",
"url": "https://github.com/erinehall"
},
{
"name": "Jared Ondricek",
"email": "jondricek@mitre.org",
"url": "https://github.com/jondricek"
}
],
"files": [
"dist/*",
"README.md",
"LCENSE"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"dependencies": {
"axios": "^1.7.5",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.12.0",
"@semantic-release/git": "^10.0.1",
"@types/uuid": "^10.0.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"husky": "^9.1.6",
"prettier": "3.3.3",
"semantic-release": "^24.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.9.0",
"vitest": "^2.1.3",
"zod2md": "^0.1.3"
}
}