-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.37 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
{
"name": "@typeservice/radix",
"version": "1.0.5",
"description": "crazy lightweight and power radix router for any service which like koa",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/typeservice/radix.git"
},
"scripts": {
"dev": "ts-node test/index.ts",
"build": "rm -rf dist/ && tsc -d",
"test": "jest --detectOpenHandles",
"test:coverage": "rm -rf coverage/ && nyc jest --detectOpenHandles --forceExit --coverage",
"test:report": "nyc report --reporter=text-lcov > coverage.lcov && codecov --token=c13d9473-43a3-4eb4-a177-e8f40d3aca04"
},
"keywords": [
"typeservice",
"koa",
"radix",
"router"
],
"files": [
"dist"
],
"author": "cevio",
"license": "MIT",
"bugs": {
"url": "https://github.com/typeservice/radix/issues"
},
"homepage": "https://github.com/typeservice/radix#readme",
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/koa": "^2.0.49",
"@typeservice/koa": "^1.0.2",
"axios": "^0.19.0",
"codecov": "^3.6.0",
"jest": "^24.9.0",
"nyc": "^14.1.1",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
},
"dependencies": {
"cookies": "^0.7.3",
"find-my-way": "^2.1.1",
"globby": "^10.0.1",
"inversify": "^5.0.1",
"is-class": "0.0.8",
"reflect-metadata": "^0.1.13"
}
}