-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "@pomgui/rest-codegen",
"version": "0.1.2",
"description": "Typescript code generator from Swagger/OpenApi definition file using pirest lib",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "tsc",
"build": "tsc",
"postversion": "git push && git push --tags",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"rest-codegen": "./dist/rest-codegen.js",
"rest-pathfix": "./dist/rest-pathfix.js"
},
"keywords": [],
"author": "Wilfredo <[email protected]> (https://github.com/pomgui)",
"license": "MIT",
"dependencies": {
"@pomgui/rest-lib": "^0.1.0",
"js-yaml": "^3.13.1",
"klaw": "^3.0.0",
"mustache": "^4.0.1",
"tslib": "^2.0.1"
},
"devDependencies": {
"@types/js-yaml": "^3.12.1",
"@types/klaw": "^3.0.0",
"@types/mustache": "^4.0.1",
"@types/node": "^14.6.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"optionalDependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/pomgui/rest-codegen.git"
}
}