-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 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
{
"name": "@vitwit/js-sdkgen",
"version": "2.0.11",
"description": "JavaScript SDK code generator for any API. It uses apidoc definitions from swagger or apidocjs and generates the Javascript SDK automatically.",
"main": "src/index.js",
"bin": {
"js-sdkgen": "bin/js-sdkgen"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"generator",
"code",
"sdk generator",
"js-sdkgen",
"JavaScript",
"sdkgen",
"sdk"
],
"author": "Vitwit",
"contributors": [
"Yash Rathore <opensource@vitwit.com> (https://github.com/vitwit/JS-SDKGen.git)"
],
"license": "MIT",
"dependencies": {
"arg": "^4.1.1",
"chalk": "^2.4.2",
"cp": "^0.2.0",
"esm": "^3.2.18",
"execa": "^2.1.0",
"listr": "^0.14.3"
},
"files": [
"bin/",
"src/"
],
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vitwit/JS-SDKGen.git"
},
"bugs": {
"url": "https://github.com/vitwit/JS-SDKGen/issues"
},
"homepage": "https://github.com/vitwit/JS-SDKGen#readme",
"devDependencies": {
"@babel/preset-env": "^7.6.2",
"@babel/preset-stage-3": "^7.0.0",
"babel-jest": "^24.9.0",
"babel-polyfill": "^6.26.0",
"eslint": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"standard-version": "^7.0.0"
}
}