forked from lukeautry/tsoa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.83 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
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "tsoa",
"description": "Build swagger-compliant REST APIs using TypeScript and Node",
"version": "1.0.19",
"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 && tsc",
"clean": "rimraf dist && rimraf test/fixtures/routes.ts",
"lint": "tslint --exclude=./node_modules/** ./src/**/*.ts ./tests/**/*.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",
"routes-gen:hapi": "node ./dist/cli.js routes --configuration=hapi-tsoa.json",
"routes-gen:koa": "node ./dist/cli.js routes --configuration=koa-tsoa.json",
"routes-gen:inversify": "node ./dist/cli.js routes --configuration=inversify-tsoa.json",
"pretest": "npm run build && npm run swagger-gen && npm run routes-gen && npm run routes-gen:hapi && npm run routes-gen:koa && npm run routes-gen:inversify && npm run lint",
"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.4.0",
"express": "^4.14.0",
"handlebars": "^4.0.6",
"merge": "^1.2.0",
"mkdirp": "^0.5.1",
"moment": "^2.17.1",
"tslint": "^4.1.1",
"typescript": "^2.1.4",
"typescript-formatter": "^4.0.1",
"yargs": "^4.8.1"
},
"devDependencies": {
"@types/body-parser": "0.0.30",
"@types/chai": "^3.4.34",
"@types/express": "^4.0.34",
"@types/handlebars": "^3.0.28",
"@types/hapi": "^13.0.37",
"@types/koa": "^2.0.36",
"@types/koa-bodyparser": "^3.0.22",
"@types/koa-router": "^7.0.21",
"@types/lodash": "^4.14.43",
"@types/method-override": "0.0.27",
"@types/mime": "0.0.28",
"@types/minimatch": "^2.0.29",
"@types/mkdirp": "^0.3.29",
"@types/mocha": "^2.2.33",
"@types/node": "^6.0.52",
"@types/serve-static": "^1.7.31",
"@types/superagent": "^2.0.36",
"@types/supertest": "^1.1.32",
"@types/yargs": "0.0.28",
"body-parser": "^1.15.2",
"chai": "^3.5.0",
"hapi": "^16.0.2",
"inversify": "^3.0.0",
"koa": "^2.0.0-alpha.7",
"koa-bodyparser": "^3.2.0",
"koa-router": "^7.0.1",
"lodash.set": "^4.3.2",
"method-override": "^2.3.7",
"mocha": "^3.2.0",
"reflect-metadata": "^0.1.9",
"rimraf": "^2.5.4",
"supertest": "^2.0.1",
"ts-node": "^1.7.2"
},
"repository": {
"type": "git",
"url": "https://github.com/lukeautry/tsoa.git"
},
"bin": {
"tsoa": "dist/cli.js"
},
"engines": {
"node": ">=6.0.0"
},
"engineStrict": true
}