forked from sue71/swagger-ts-gen
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.47 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
{
"name": "swagger-ts-gen",
"types": "./lib/index",
"main": "./lib/index",
"version": "0.4.4",
"description": "The generator for swagger schema",
"scripts": {
"clean": "rm -rf ./lib",
"example": "./node_modules/.bin/ts-node ./src/bin/cli.ts generate examples/petstore.json --model-property-naming original",
"test": "mocha --recursive --require ts-node/register \"test/**/*.ts\"",
"build": "npm run clean && ./node_modules/.bin/tsc",
"patch": "npm test && npm run build && npm version patch && npm publish",
"minor": "npm test && npm run build && npm version minor && npm publish",
"major": "npm test && npm run build && npm version major && npm publish"
},
"bin": {
"swagger-ts-gen": "bin/swagger-ts-gen.js"
},
"bugs": {
"url": "https://github.com/sue71/swagger-ts-gen/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/sue71/swagger-ts-gen.git"
},
"keywords": [
"swagger",
"TypeScript"
],
"author": {
"name": "Masaki Sueda",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/sue71/swagger-ts-gen",
"dependencies": {
"commander": "^5.1.0",
"handlebars": "^4.7.6"
},
"devDependencies": {
"@types/assert": "1.4.7",
"@types/handlebars": "^4.1.0",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.11",
"@types/swagger-schema-official": "2.0.10",
"mocha": "^7.2.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
}
}