-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
59 lines (59 loc) · 1.39 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
{
"name": "openapi-codegen",
"version": "2.2.2",
"description": "OpenAPI 3.0 CodeGen",
"main": "local.js",
"bin": {
"cg": "./cg.js"
},
"scripts": {
"lint": "npx eslint *.js test/*.js lib/",
"test": "npx mocha --delay"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mermade/openapi-codegen.git"
},
"keywords": [
"openapi",
"swagger",
"openapi3",
"codegen"
],
"author": "Mike Ralphson",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Mermade/openapi-codegen/issues"
},
"homepage": "https://github.com/Mermade/openapi-codegen#readme",
"dependencies": {
"adm-zip": "^0.5.1",
"case": "^1.5.4",
"co": "^4.6.0",
"connect": "^3.6.5",
"fast-safe-stringify": "^2.0.7",
"hogan.js": "^3.0.2",
"mkdirp": "^1.0.4",
"node-fetch": "^2.0.0",
"oas-schema-walker": "^1.1.3",
"oas-validator": "^5.0.4",
"openapi-sampler": "^1.0.0-beta.8",
"reftools": "^1.1.0",
"rimraf": "^3.0.0",
"swagger-tools": "^0.10.4",
"swagger2openapi": "^7.0.4",
"uuid": "^8.0.0",
"yaml": "^1.8.3",
"yargs": "^14.0.0"
},
"devDependencies": {
"@exodus/schemasafe": "^1.0.0-beta.5",
"babel-preset-env": "^1.7.0",
"eslint": "^7.2.0",
"mocha": "^9.0.0",
"node-readfiles": "^0.2.0",
"should": "^13.1.3",
"webpack": "^5.38.1",
"webpack-cli": "^4.3.1"
}
}