-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 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-router-find-my-way",
"version": "5.0.0",
"description": "Router middleware for koa. Based on find-my-way, a crazy fast http radix based router.",
"keywords": [
"koa",
"router",
"route",
"middleware",
"find-my-way",
"http",
"server",
"radix",
"fast"
],
"repository": {
"type": "git",
"url": "https://github.com/Cweili/koa-router-find-my-way.git"
},
"author": "Cweili",
"license": "MIT",
"homepage": "https://github.com/Cweili/koa-router-find-my-way",
"bugs": {
"url": "https://github.com/Cweili/koa-router-find-my-way/issues"
},
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"pretest": "eslint --fix *.js test/*.js",
"test": "jest test --coverage --forceExit"
},
"dependencies": {
"find-my-way": "^5.0.0",
"koa-compose": "^4.1.0"
},
"peerDependencies": {
"koa": "^2.0.0"
},
"devDependencies": {
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-node": "^0.3.3",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^27.0.4",
"got": "^11.0.2",
"jest": "^28.1.2",
"koa": "^2.11.0"
},
"engines": {
"node": ">=10.0.0"
}
}