forked from kogosoftwarellc/fetch-openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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
{
"name": "fetch-openapi",
"version": "0.3.0",
"description": "Client SDK generator for openapi documents using fetch.",
"main": "index.js",
"bin": {
"fetch-openapi": "./bin/fetch-openapi.js"
},
"scripts": {
"cover": "istanbul cover _mocha -- ./test/*.js",
"coveralls": "cat ./coverage/lcov.info | coveralls -v",
"test-watch": "mocha -w ./test/*.js",
"test": "mocha ./test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kogosoftwarellc/fetch-openapi.git"
},
"keywords": [
"fetch",
"openapi",
"generator",
"sdk"
],
"author": "Kogo Software LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/kogosoftwarellc/fetch-openapi/issues"
},
"homepage": "https://github.com/kogosoftwarellc/fetch-openapi#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"glob": "^7.0.3",
"istanbul": "^0.4.3",
"mocha": "^2.4.5"
},
"dependencies": {
"chalk": "^1.1.3",
"commander": "^2.9.0",
"composites": "^1.1.1",
"err-handler": "^1.0.5",
"request": "*"
}
}