forked from jharmn/google-discovery-to-swagger
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 938 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
{
"name": "google-discovery-to-swagger",
"version": "0.0.6",
"description": "Script for converting Google Discovery format into Swagger 2.0",
"main": "src/index.js",
"scripts": {
"test": "bin/discovery2swagger $(mktemp -d)"
},
"repository": {
"type": "git",
"url": "git://github.com/APIs-guru/google-discovery-to-swagger.git"
},
"keywords": [
"API",
"REST",
"Swagger"
],
"author": "Ivan Goncharov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/APIs-guru/google-discovery-to-swagger/issues"
},
"bin": {
"discovery2swagger": "./bin/discovery2swagger"
},
"dependencies": {
"URIjs": "~1.15.0",
"json-schema-compatibility": "^1.1.0",
"jsonpath": "~0.1.3",
"lodash": "~3.6.0",
"mime-db": "~1.8.0",
"mkdirp": "^0.5.1",
"node-rest-client": "~1.5.0",
"swagger-tools": "~0.8.5",
"traverse": "~0.6.6"
}
}