-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 942 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 942 Bytes
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
{
"name": "@security-alliance/taxii",
"version": "0.1.1",
"description": "TAXII client written in JavaScript",
"publishConfig": {
"access": "public"
},
"type": "module",
"exports": {
"./2.1": "./dist/2.1/index.js"
},
"typesVersions": {
"*": {
"./2.1": [
"dist/2.1/index.d.ts"
]
}
},
"scripts": {
"build": "tsc -p tsconfig.release.json",
"prepublishOnly": "pnpm run build",
"prettier:check": "npx prettier -c \"**/*.{js,ts,md,json,yml,yaml}\"",
"prettier:fix": "npx prettier -w \"**/*.{js,ts,md,json,yml,yaml}\""
},
"keywords": [
"STIX",
"TAXII"
],
"author": "Security Alliance",
"license": "MIT",
"files": [
"dist/"
],
"dependencies": {
"@security-alliance/stix": "^0.1.0"
},
"devDependencies": {
"@types/node": "^22.5.5",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
}
}