forked from mtennoe/swagger-typescript-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.22 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
{
"name": "swagger-typescript-codegen",
"main": "./lib/codegen.js",
"version": "1.1.1",
"description": "A Swagger Codegenerator tailored for typescript.",
"scripts": {
"test": "grunt",
"clean": "rm -rf tmp-*"
},
"bin": {
"swagger2ts": "bin/swagger2ts.js"
},
"bugs": {
"url": "https://github.com/mtennoe/swagger-typescript-codegen/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/mtennoe/swagger-typescript-codegen.git"
},
"keywords": [
"swagger",
"rest"
],
"author": {
"name": "Marius Tennøe",
"email": "[email protected]"
},
"license": "Apache-2.0",
"homepage": "https://github.com/mtennoe/swagger-typescript-codegen",
"dependencies": {
"commander": "^2.9.0",
"js-beautify": "^1.5.1",
"jshint": "^2.5.1",
"lodash": "^4.15.0",
"mustache": "^2.0.0",
"update-notifier": "^2.1.0"
},
"devDependencies": {
"final-fs": "^1.6.0",
"grunt": "^1.0.1",
"grunt-contrib-jshint": "^1.1.0",
"grunt-jsonlint": "^1.0.4",
"grunt-vows": "^0.4.1",
"matchdep": "^1.0.1 ",
"q": "^1.0.1",
"request": "^2.40.0",
"superagent": "^3.3.1",
"tmp": "0.0.31",
"typescript": "^2.1.4",
"vows": "^0.8.1"
}
}