-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"name": "moa-router",
"version": "1.7.8",
"description": "a better && faster router base on find-my-way(support koa/express/http).find-my-way is a Crazy fast http radix based router",
"main": "index.js",
"scripts": {
"precommit": "standard --fix && npm test",
"bench": "node bench.js",
"test": "tap test/*.test.js",
"coveralls": "tap test/*.test.js --cov --coverage-report=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moajs/moa-router.git"
},
"keywords": [
"http",
"koa",
"express",
"web",
"router",
"radix",
"fast",
"speed"
],
"author": "Alfred Sang - @i5ting (http://i5ting.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/moajs/moa-router/issues"
},
"homepage": "https://github.com/moajs/moa-router#readme",
"devDependencies": {
"benchmark": "^2.1.4",
"coveralls": "^2.13.1",
"express": "^4.16.2",
"husky": "^0.14.3",
"koa": "^2.4.1",
"koa-router": "^7.3.0",
"request": "^2.81.0",
"standard": "^10.0.3",
"supertest": "^3.0.0",
"tap": "^10.7.2"
},
"dependencies": {
"find-my-way": "^1.7.1"
}
}