forked from IBM/openapi-to-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.46 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
{
"name": "openapi-to-graphql-cli",
"version": "2.2.6",
"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": "^6.1.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-graphql": "^0.11.0",
"graphql": "^15.3.0",
"js-yaml": "^3.14.0",
"openapi-to-graphql": "^2.2.6",
"request": "^2.88.0"
},
"devDependencies": {
"@types/node": "^14.11.2",
"husky": "^4.3.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2",
"standard": "^14.3.1",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"typescript": "^4.0.3"
},
"bin": {
"openapi-to-graphql": "./lib/openapi-to-graphql.js"
}
}