-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.44 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
{
"name": "stix-swagger",
"version": "1.0.5",
"description": "A stix module that generates swagger docs based on your stix app.",
"repository": {
"type": "git",
"url": "git+https://github.com/SpoonX/stix-swagger.git"
},
"author": "RWOverdijk <[email protected]>",
"main": "./dist/index.js",
"files": [
"dist",
"static"
],
"types": "dist/index.d.ts",
"keywords": [
"stix",
"api",
"framework",
"typescript",
"tsc",
"swagger",
"node",
"docs"
],
"bugs": {
"url": "https://github.com/SpoonX/stix-swagger/issues"
},
"homepage": "https://github.com/SpoonX/stix-swagger",
"scripts": {
"build": "tsc --build tsconfig.json",
"prepare": "yarn build",
"version": "conventional-changelog -p angular -i doc/CHANGELOG.md -s && git add -A doc/CHANGELOG.md",
"postpublish": "git push upstream master && git push upstream --tags"
},
"dependencies": {
"@types/joi": "^14.3.2",
"joi": "^14.3.1",
"joi-to-openapi": "^1.0.3",
"procurator": "^3.0.1",
"stix": "^4.5.2",
"stix-gates": "^3.0.7",
"stix-schema": "^1.0.4",
"stix-security": "^0.0.8",
"stix-wetland": "^1.2.1"
},
"devDependencies": {
"@types/node": "^10.11.4",
"koa": "^2.5.3",
"stix": "^4.5.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.0.3",
"wetland": "^4.1.2"
},
"license": "MIT"
}