-
Notifications
You must be signed in to change notification settings - Fork 177
/
package.json
75 lines (75 loc) · 1.79 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
67
68
69
70
71
72
73
74
75
{
"name": "@koa/router",
"description": "Router middleware for koa. Maintained by Forward Email and Lad.",
"version": "13.1.0",
"author": "Alex Mingoia <[email protected]>",
"bugs": {
"url": "https://github.com/koajs/router/issues",
"email": "[email protected]"
},
"contributors": [
{
"name": "Alex Mingoia",
"email": "[email protected]"
},
{
"name": "@koajs"
},
{
"name": "Imed Jaberi",
"email": "[email protected]"
}
],
"dependencies": {
"http-errors": "^2.0.0",
"koa-compose": "^4.1.0",
"path-to-regexp": "^6.3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@ladjs/env": "^4.0.0",
"eslint": "^8.39.0",
"eslint-config-xo-lass": "^2.0.1",
"fixpack": "^4.0.0",
"husky": "^8.0.3",
"jsdoc-to-markdown": "^8.0.0",
"koa": "^2.15.3",
"lint-staged": "^14.0.1",
"mocha": "^10.7.3",
"nyc": "^17.0.0",
"remark-cli": "11",
"remark-preset-github": "^4.0.4",
"supertest": "^7.0.0",
"xo": "0.53.1"
},
"engines": {
"node": ">= 18"
},
"files": [
"lib"
],
"homepage": "https://github.com/koajs/router",
"keywords": [
"koa",
"middleware",
"route",
"router"
],
"license": "MIT",
"main": "lib/router.js",
"repository": {
"type": "git",
"url": "git+https://github.com/koajs/router.git"
},
"scripts": {
"bench": "make -C bench",
"coverage": "nyc npm run test",
"docs": "NODE_ENV=test jsdoc2md -t ./lib/API_tpl.hbs --src ./lib/*.js >| API.md",
"lint": "xo --fix && remark . -qfo && fixpack",
"prepare": "husky install",
"pretest": "npm run lint",
"test": "mocha test/**/*.js",
"test:watch": "mocha test/**/*.js --watch"
}
}