-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
40 lines (40 loc) · 988 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": "google-discovery-to-swagger",
"version": "2.1.0",
"description": "Script for converting Google Discovery format into Swagger 2.0",
"main": "src/index.js",
"scripts": {
"test": "test/discovery2swagger $(mktemp -d)"
},
"repository": {
"type": "git",
"url": "git://github.com/APIs-guru/google-discovery-to-swagger.git"
},
"keywords": [
"API",
"REST",
"Swagger",
"Google",
"OpenAPI"
],
"author": "Ivan Goncharov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/APIs-guru/google-discovery-to-swagger/issues"
},
"dependencies": {
"deep-sort-object": "^1.0.2",
"json-schema-compatibility": "^1.1.0",
"jsonpath": "^1.1.1",
"lodash": "^4.17.21",
"mime-db": "^1.48.0",
"mime-lookup": "^0.0.2",
"traverse": "~0.6.6",
"urijs": "^1.19.6"
},
"devDependencies": {
"mkdirp": "^0.5.5",
"node-fetch": "^2.6.0",
"oas-validator": "^4.0.8"
}
}