forked from areijngoudt/swagger-ts-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.72 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
60
{
"name": "swagger-ts-generator",
"version": "1.2.2",
"description": "Given a swagger.json file, generates a number of TypeScript files which can be used as models and model-driven forms in Angular 2 (and above)",
"main": "index.js",
"scripts": {
"start": "tsc --watch",
"dist": "tsc",
"publish-patch": "npm version patch && npm publish",
"test": "yarn run gen && jest",
"jest": "jest",
"gen": "gulp gen"
},
"keywords": [
"Swagger",
"Code Generator",
"models",
"Angular",
"Angular2+",
"Angular 2+",
"ngx",
"model-driven forms",
"reactive forms"
],
"repository": {
"type": "git",
"url": "https://github.com/areijngoudt/swagger-ts-generator"
},
"author": "Ad Reijngoudt <[email protected]>",
"license": "ISC",
"dependencies": {
"fs": "0.0.2",
"handlebars": "^4.5.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"path": "^0.12.7"
},
"devDependencies": {
"@types/handlebars": "^4.1.0",
"@types/jest": "^24.0.22",
"@types/lodash": "^4.14.146",
"@types/node": "^10.3.1",
"gulp": "^4.0.0",
"gulp-exec": "^3.0.1",
"gulp-jsbeautifier": "^2.1.0",
"gulp-load-plugins": "^1.5.0",
"gulp-notify": "^3.0.0",
"gulp-plumber": "^1.1.0",
"gulp-streamify": "^1.0.2",
"gulp-task-listing": "^1.1.0",
"gulp-util": "^3.0.8",
"jest": "^24.9.0",
"request": "^2.88.0",
"ts-jest": "^24.1.0",
"typescript": "^2.9.1",
"util": "^0.12.1",
"vinyl-source-stream": "^2.0.0",
"yargs": "^14.2.0"
}
}