-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.08 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.08 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
{
"name": "openapi-parser-shark",
"version": "2.1.9",
"description": "generate service code according to OpenAPI document",
"main": "dist/index.js",
"bin": {
"openapi-parser": "dist/bin.js"
},
"keywords": [
"OpenAPI",
"swagger",
"typescript",
"auto generate",
"axios",
"fetch"
],
"scripts": {
"build": "tsc && npx copyfiles -f src/template/*.handlebars dist/template"
},
"repository": {
"type": "git",
"url": "https://github.com/corianderHunter/openapi-parser-shark"
},
"author": "corianderHunter",
"license": "MIT",
"devDependencies": {
"@babel/types": "^7.19.3",
"@types/axios": "^0.14.0",
"@types/lodash": "^4.14.182",
"@types/node": "^18.6.1",
"@types/prettier": "^2.7.0",
"copyfiles": "^2.4.1"
},
"dependencies": {
"@babel/parser": "^7.19.3",
"axios": "^0.27.2",
"camelcase": "^7.0.0",
"commander": "^9.4.0",
"handlebars": "^4.7.7",
"lodash": "^4.17.21",
"object-hash": "^3.0.0",
"prettier": "^2.7.1",
"swagger2openapi": "^7.0.8",
"ts-node": "^10.9.1"
}
}