This repository has been archived by the owner on Apr 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 1.63 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
{
"name": "@t2ee/vader",
"version": "1.0.3",
"description": "t2ee router component",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc -p src/tsconfig.json",
"prepublish": "npm run test && npm run build",
"build-test": "rm -rf test-dist/ && tsc -p src/tsconfig.test.json",
"test": "npm run build-test && ava test-dist/**/*.test.js test-dist/**/**/*.test.js test-dist/*.test.js",
"coverage": "npm run build-test && nyc ava -- test-dist/**/*.test.js test-dist/**/**/*.test.js test-dist/*.test.js"
},
"dependencies": {
"@types/co-body": "0.0.1",
"@types/debug": "0.0.28",
"@types/koa": "^2.0.39",
"@types/lodash": "^4.14.71",
"@types/node": "^7.0.8",
"co-body": "^4.2.0",
"debug": "^2.2.0",
"formidable": "^1.0.17",
"lodash": "^4.17.4",
"path-to-regexp": "^1.5.3",
"source-map-support": "^0.4.2"
},
"peerDependencies": {
"@t2ee/core": "0.1.x",
"@t2ee/sl4js": "0.1.x",
"koa": "2.x",
"typescript": "2.4.x",
"reflect-metadata": "^0.1.10"
},
"devDependencies": {
"ava": "^0.21.0",
"nyc": "^11.1.0",
"superkoa": "^1.0.3"
},
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"koa",
"t2ee",
"rest",
"restful",
"ts",
"typescript",
"jersey",
"router",
"middleware"
],
"author": "Qiaosen Huang",
"license": "Apache-2.0",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/t2ee/vader.git"
},
"bugs": {
"url": "https://github.com/t2ee/vader/issues"
},
"homepage": "https://github.com/t2ee/vader#readme"
}