forked from typestack/routing-controllers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.88 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.88 KB
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
92
93
94
95
96
97
98
99
{
"name": "@gritcode/routing-controllers",
"private": false,
"version": "0.8.0",
"description": "Create structured, declarative and beautifully organized class-based controllers with heavy decorators usage for Express / Koa using TypeScript.",
"license": "MIT",
"readmeFilename": "README.md",
"author": {
"name": "Umed Khudoiberdiev",
"email": "pleerock.me@gmail.com"
},
"contributors": [
{
"name": "Michał Lytek",
"url": "https://github.com/19majkel94"
}
],
"repository": {
"type": "git",
"url": "https://github.com/pleerock/routing-controllers.git"
},
"bugs": {
"url": "https://github.com/pleerock/routing-controllers/issues"
},
"main": "index.js",
"tags": [
"express",
"express.js",
"typescript",
"typescript-express",
"typescript-express.js",
"express-controllers",
"controllers"
],
"dependencies": {
"cookie": "^0.4.0",
"glob": "^7.1.4",
"reflect-metadata": "^0.1.13",
"template-url": "^1.0.0"
},
"peerDependencies": {
"class-transformer": "^0.2.3",
"class-validator": "0.10.1"
},
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/chai-as-promised": "7.1.2",
"@types/express": "^4.17.1",
"@types/express-session": "1.15.14",
"@types/koa": "^2.0.50",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.8",
"@types/sinon": "^7.0.13",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chakram": "^1.5.0",
"class-transformer": "^0.2.3",
"class-validator": "0.10.1",
"copyfiles": "^2.1.1",
"cors": "^2.8.5",
"cross-env": "6.0.0",
"express": "^4.17.1",
"express-session": "^1.16.2",
"handlebars": "^4.4.0",
"json": "^9.0.6",
"kcors": "^2.2.2",
"koa": "^2.8.2",
"koa-bodyparser": "^4.2.1",
"koa-convert": "^1.2.0",
"koa-multer": "^1.0.2",
"koa-router": "^7.4.0",
"koa-session": "^5.12.3",
"koa-views": "^6.2.1",
"mocha": "^6.2.1",
"multer": "^1.4.2",
"mustache-express": "^1.3.0",
"nyc": "^14.1.1",
"request": "^2.88.0",
"rimraf": "^3.0.0",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0",
"source-map-support": "^0.5.13",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typedi": "~0.8.0",
"typescript": "~3.6.3"
},
"scripts": {
"build": "rimraf build && echo Using TypeScript && tsc --version && tsc --pretty",
"clean": "rimraf build coverage",
"copy": "copyfiles -u 3 \"build/compiled/src/**/*\" build/package && copyfiles package.json README.md build/package",
"lint": "tslint --fix --format verbose --project tsconfig.json",
"package": "npm run build && npm run copy && npm run public && rimraf build/compiled",
"pretest": "npm run lint",
"public": "json -I -f build/package/package.json -e 'this.private=false'",
"test": "rimraf coverage && cross-env NODE_ENV=test nyc mocha test/**/*.ts"
}
}