-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.79 KB
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
{
"name": "node-swagger-generator",
"version": "0.0.1",
"scripts": {
"build": "tsc",
"test": "jasmine JASMINE_CONFIG_PATH=./jasmine.json",
"build:test": "run-s build test",
"spec:swagger-2:download": "download --out ./lib/specs --filename swagger-2.0.json https://raw.githubusercontent.com/OAI/OpenAPI-Specification/88cd94419e117b154b67b834fa8e471bb98bd346/schemas/v2.0/schema.json",
"spec:swagger-2:convert": "json2ts --input lib/specs/swagger-2.0.json --output lib/specs/swagger-2.0.d.ts",
"spec:swagger-2": "run-s spec:swagger-2:download spec:swagger-2:convert",
"spec:openapi-3:download": "download --out ./lib/specs --filename openapi-3.0.json https://raw.githubusercontent.com/Mermade/swagger2openapi/master/schemas/openapi-3.0.json",
"spec:openapi-3:convert": "json2ts --input lib/specs/openapi-3.0.json --output lib/specs/openapi-3.0.d.ts",
"spec:openapi-3": "run-s spec:openapi-3:download spec:openapi-3:convert"
},
"dependencies": {
"@types/sanitize-filename": "^1.6.3",
"async": "^3.2.0",
"bluebird": "^3.7.2",
"chalk": "^3.0.0",
"fs-extra": "^8.1.0",
"handlebars": "^4.7.3",
"lodash": "^4.17.15",
"prettier": "^1.19.1",
"sanitize-filename": "^1.6.3",
"swagger-parser": "^6.0.5",
"xregexp": "^4.3.0"
},
"main": "dist/lib/index.js",
"bin": {
"swaggen": "./run/swaggen"
},
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/handlebars": "^4.1.0",
"@types/jasmine": "^3.5.8",
"@types/lodash": "^4.14.149",
"@types/node": "^12.7.2",
"@types/prettier": "^1.19.0",
"@types/swagger-parser": "^4.0.3",
"@types/xregexp": "^3.0.30",
"download-cli": "^1.1.1",
"jasmine": "^3.5.0",
"json-schema-to-typescript": "^8.1.0",
"npm-run-all": "^4.1.5",
"typescript": "^3.8.3",
"yargs": "^15.1.0"
},
"description": "An OpenAPI Specification (formerly Swagger) Client Generator. It uses templates written in Handlebars to generate a client code base in various languages.",
"keywords": [
"swagger",
"openapi",
"codegen",
"generator",
"handlebars"
],
"homepage": "https://github.com/geeklearningio/gl-swagger-generator",
"bugs": "https://github.com/geeklearningio/gl-swagger-generator/issues",
"license": "MIT",
"author": {
"name": "Geek Learning",
"url": "http://geeklearning.io/"
},
"contributors": [
{
"name": "Cyprien Autexier",
"url": "http://geeklearning.io/author/cyprien/"
},
{
"name": "Adrien Siffermann",
"url": "http://geeklearning.io/author/adrien/"
},
{
"name": "Michel Vidailhet",
"url": "http://geeklearning.io/author/michel/"
}
],
"repository": "geeklearningio/gl-swagger-generator",
"files": [
"dist/**/*.d.ts",
"dist/**/*.js",
"templates",
"run"
]
}