forked from wcandillon/swagger-js-codegen
-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
79 lines (79 loc) · 1.97 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "swagger-typescript-codegen",
"main": "./lib/codegen.js",
"version": "3.2.4",
"description": "A Swagger Codegenerator tailored for typescript.",
"scripts": {
"pretest": "npm run build",
"test": "grunt && jest",
"updateSnapshots": "grunt && jest --updateSnapshot",
"clean": "rm -rf tmp-*",
"build": "tsc --project tsconfig.json",
"build:watch": "npm run build -- --watch",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build",
"prettier": "prettier --write \"src/**/*.ts\""
},
"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.19.0",
"js-beautify": "^1.8.9",
"jshint": "^2.9.7",
"lodash": "^4.17.19",
"mustache": "^3.0.1",
"update-notifier": "^4.1.0"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/jest": "^23.3.10",
"@types/js-beautify": "^1.8.0",
"@types/lodash": "^4.14.119",
"@types/mustache": "^0.8.32",
"@types/node": "^10.12.18",
"final-fs": "^1.6.0",
"grunt": "^1.0.3",
"grunt-contrib-jshint": "^2.0.0",
"grunt-jsonlint": "^1.0.4",
"grunt-vows": "^0.4.1",
"husky": "^1.3.1",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"matchdep": "^2.0.0",
"prettier": "1.15.3",
"request": "^2.88.0",
"superagent": "^4.0.0",
"tmp": "0.0.33",
"typescript": "^3.2.2",
"vows": "^0.8.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,md},": [
"prettier --write",
"git add"
]
}
}