-
Notifications
You must be signed in to change notification settings - Fork 406
/
package.json
44 lines (44 loc) · 1002 Bytes
/
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
{
"name": "koa-router",
"description": "Router middleware for koa. Provides RESTful resource routing.",
"repository": {
"type": "git",
"url": "https://github.com/alexmingoia/koa-router.git"
},
"main": "lib/router.js",
"files": [
"lib"
],
"author": "Alex Mingoia <talk@alexmingoia.com>",
"version": "7.4.0",
"keywords": [
"koa",
"middleware",
"router",
"route"
],
"dependencies": {
"debug": "^3.1.0",
"http-errors": "^1.3.1",
"koa-compose": "^3.0.0",
"methods": "^1.0.1",
"path-to-regexp": "^1.1.1",
"urijs": "^1.19.0"
},
"devDependencies": {
"expect.js": "^0.3.1",
"jsdoc-to-markdown": "^1.1.1",
"koa": "2.2.0",
"mocha": "^2.0.1",
"should": "^6.0.3",
"supertest": "^1.0.1"
},
"scripts": {
"test": "NODE_ENV=test mocha test/**/*.js",
"docs": "NODE_ENV=test jsdoc2md -t ./lib/README_tpl.hbs --src ./lib/*.js >| README.md"
},
"engines": {
"node": ">= 4"
},
"license": "MIT"
}