forked from lukeautry/tsoa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.18 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
{
"name": "tsoa",
"description": "Build swagger-compliant REST APIs using TypeScript and Node",
"version": "1.0.3",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"keywords": [
"typescript",
"swagger",
"node",
"node.js",
"codegen",
"generation"
],
"scripts": {
"start": "tsc -w",
"build": "npm run clean && npm run lint && tsc",
"clean": "rimraf dist && rimraf test/fixtures/routes.ts",
"lint": "tslint --exclude=./node_modules/** ./**/*.ts",
"format": "tsfmt -r",
"deploy": "npm run build && npm version patch && git push origin master && npm publish",
"routes-gen": "node ./dist/cli.js routes",
"swagger-gen": "node ./dist/cli.js swagger",
"pretest": "npm run build && npm run swagger-gen && npm run routes-gen && npm run format",
"test": "mocha **/*.spec.ts --compilers ts:ts-node/register",
"tsc": "tsc"
},
"author": "Luke Autry <lukeautry@gmail.com> (http://www.lukeautry.com)",
"license": "MIT",
"dependencies": {
"app-root-path": "^1.2.1",
"express": "^4.14.0",
"handlebars": "^4.0.5",
"mkdirp": "^0.5.1",
"moment": "^2.14.1",
"typescript": "^2.1.0-dev.20160910",
"typescript-formatter": "^2.3.0",
"yargs": "^4.8.1"
},
"devDependencies": {
"@types/body-parser": "0.0.30",
"@types/chai": "^3.4.30",
"@types/express": "^4.0.30",
"@types/handlebars": "^3.0.28",
"@types/method-override": "0.0.27",
"@types/mime": "0.0.28",
"@types/minimatch": "^2.0.28",
"@types/mkdirp": "^0.3.28",
"@types/mocha": "^2.2.29",
"@types/node": "^6.0.32",
"@types/serve-static": "^1.7.28",
"@types/superagent": "^2.0.29",
"@types/supertest": "^1.1.28",
"@types/yargs": "0.0.28",
"body-parser": "^1.15.2",
"chai": "^3.5.0",
"method-override": "^2.3.6",
"mocha": "^3.0.2",
"rimraf": "^2.5.4",
"supertest": "^2.0.0",
"ts-node": "^1.2.2",
"tslint": "^3.14.0",
"@types/lodash": "^4.0.0",
"lodash.set": "^4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/lukeautry/tsoa.git"
},
"bin": {
"tsoa": "dist/cli.js"
},
"engines": {
"node": ">=6.0.0"
},
"engineStrict": true
}