-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 922 Bytes
/
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
{
"name": "tyranid-openapi",
"version": "0.5.20",
"description": "Open API spec and express app generator for tyranid",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"test": "bash -c \"mkdir -p ./.tmp/ && rm -rf ./dist/ && npm run build && npm run ava\"",
"ava": "ava",
"build": "tsc",
"watch": "tsc -w"
},
"keywords": [
"tyranid",
"swagger",
"openapi",
"api"
],
"author": "[email protected]",
"license": "Apache-2.0",
"dependencies": {
"@types/js-yaml": "3.12.3",
"@types/swagger-schema-official": "2.0.21",
"ajv": "5.5.2",
"js-yaml": "3.13.1",
"swagger-schema-official": "2.0.0-bab6bed"
},
"peerDependencies": {
"tyranid": "^0.5.0"
},
"devDependencies": {
"typescript": "3.8.3"
},
"ava": {
"files": [
"dist/test/index.js"
]
},
"gitHead": "4d56c3921197e2443e11d061403b46927d37f872"
}