forked from Alan-Cha/oasgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.49 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
{
"name": "openapi-to-graphql-cli",
"version": "1.6.3",
"description": "CLI for turning APIs described by OpenAPI Specifications (OAS) into GraphQL interfaces",
"copyright.owner": "IBM Corp.",
"contributors": [
"Alan Cha",
"Erik Wittern"
],
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "https://github.com/ibm/openapi-to-graphql"
},
"homepage": "https://github.com/ibm/openapi-to-graphql",
"keywords": [
"ibm",
"strongloop",
"loopback",
"oas",
"openapi specification",
"graphql",
"translation",
"wrap",
"create",
"rest",
"restful",
"api",
"apiharmony"
],
"license": "MIT",
"standard": {
"ignore": [
"*.js"
]
},
"main": "lib/index.js",
"scripts": {
"dev": "tsc -w",
"build": "tsc"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"commander": "^2.19.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-graphql": "^0.7.1",
"graphql": "^14.0.2",
"js-yaml": "^3.12.0",
"openapi-to-graphql": "^1.6.3",
"request": "^2.88.0"
},
"devDependencies": {
"@types/node": "^11.9.4",
"husky": "^2.3.0",
"jest": "^24.1.0",
"prettier": "^1.17.1",
"pretty-quick": "^1.11.0",
"standard": "^12.0.1",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.3.3"
},
"bin": {
"openapi-to-graphql": "./lib/openapi-to-graphql.js"
}
}