-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.04 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
{
"name": "@ui-model/swagger-to-gql",
"description": "import swagger definition to graphql files",
"main": "./dist/index.js",
"bin": {
"nt": "dist/bin/index.js"
},
"version": "0.2.6",
"author": "Zhicheng Wang<[email protected]>",
"homepage": "https://github.com/ui-model/swagger-to-gql",
"repository": {
"type": "git",
"url": "https://github.com/ui-model/swagger-to-gql.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ui-model/swagger-to-gql/issues"
},
"scripts": {
"prelink": "rm -fr dist && tsc",
"prepublish": "rm -fr dist && tsc"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/node": "^9.6.41",
"@types/swagger-parser": "^4.0.2",
"@types/vfile": "^3.0.2",
"@types/yargs": "^12.0.8",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"ts-node": "^5.0.1",
"tslint": "^5.12.0",
"typescript": "^3.2.2"
},
"dependencies": {
"rxjs": "^6.3.3",
"swagger-parser": "^6.0.5",
"to-vfile": "^5.0.2",
"vfile": "^4.0.0",
"yargs": "^12.0.5"
}
}