-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
52 lines (52 loc) · 1.55 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": "koa-rapid-router",
"version": "1.0.9",
"description": "fastest router for koa",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"dev": "node test/index.js",
"test:middlware": "node test/koa.js",
"test:koa": "autocannon -c 100 -d 40 -p 10 localhost:9009/interface/api/zzz/10000",
"test:fast": "autocannon -c 100 -d 40 -p 10 localhost:9007/interface/api/zzz/10000",
"test:rapid": "autocannon -c 100 -d 40 -p 10 localhost:9008/interface/api/zzz/10000",
"test:http": "autocannon -c 100 -d 40 -p 10 localhost:9006/interface/api/zzz/10000",
"test:way": "autocannon -c 100 -d 40 -p 10 localhost:9005/interface/api/zzz/10000",
"test": "npm run test:koa && npm run test:fast && npm run test:rapid && npm run test:http && npm run test:way",
"test:fastest": "npm run test:way && npm run test:http"
},
"files": [
"lib",
"types",
"index.js"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:cevio/koa-rapid-router.git"
},
"keywords": [
"router",
"koa",
"performance",
"fastest"
],
"author": "evio",
"license": "MIT",
"bugs": {
"url": "https://github.com/cevio/koa-rapid-router/issues"
},
"homepage": "https://github.com/cevio/koa-rapid-router#readme",
"dependencies": {
"koa-compose": "^4.1.0",
"methods": "^1.1.2"
},
"devDependencies": {
"autocannon": "^3.2.0",
"fastify": "^2.0.1",
"find-my-way": "^2.0.1",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-convert": "^1.2.0",
"koa-router": "^7.4.0"
}
}