forked from IBM/openapi-to-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 1.9 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "openapi-to-graphql-cli",
"version": "2.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"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"commander": "^6.1.0",
"cors": "^2.8.5",
"cross-fetch": "3.1.4",
"express": "^4.16.4",
"express-graphql": "^0.11.0",
"graphql": "^15.3.0",
"js-yaml": "^3.14.0",
"openapi-to-graphql": "^2.5.1"
},
"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"
},
"bin": {
"openapi-to-graphql": "./dist/index.js"
},
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./*": {
"require": "./dist/*.js",
"import": "./dist/*.mjs"
}
},
"scripts": {
"dev": "tsc -w",
"build": "tsc --project ../../tsconfig.build.json"
},
"buildOptions": {
"bin": {
"openapi-to-graphql": {
"input": "src/index.ts"
}
}
}
}