UNPKG

1.03 kBJSONView Raw
1{
2 "name": "koa-router",
3 "description": "Router middleware for koa. Provides RESTful resource routing.",
4 "repository": {
5 "type": "git",
6 "url": "https://github.com/alexmingoia/koa-router.git"
7 },
8 "main": "lib/router.js",
9 "files": [
10 "lib"
11 ],
12 "author": "Alex Mingoia <talk@alexmingoia.com>",
13 "version": "7.0.0",
14 "keywords": [
15 "koa",
16 "middleware",
17 "router",
18 "route"
19 ],
20 "dependencies": {
21 "debug": "^2.2.0",
22 "http-errors": "^1.3.1",
23 "koa-compose": "^3.0.0",
24 "methods": "^1.0.1",
25 "path-to-regexp": "^1.1.1"
26 },
27 "devDependencies": {
28 "expect.js": "^0.3.1",
29 "gulp": "^3.8.11",
30 "gulp-mocha": "^2.0.0",
31 "jsdoc-to-markdown": "^1.1.1",
32 "koa": "^2.0.0-alpha.3",
33 "mocha": "^2.0.1",
34 "should": "^6.0.3",
35 "supertest": "^1.0.1"
36 },
37 "scripts": {
38 "test": "NODE_ENV=test node node_modules/gulp/bin/gulp.js test",
39 "docs": "NODE_ENV=test node node_modules/gulp/bin/gulp.js docs"
40 },
41 "engines": {
42 "node": ">= 4"
43 },
44 "license": "MIT"
45}