-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 758 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 758 Bytes
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
{
"name": "koa-simple-router",
"version": "0.2.0",
"description": "Simple router for koa 2.x",
"repository": {
"type": "git",
"url": "https://github.com/gyson/koa-simple-router.git"
},
"main": "index.js",
"keywords": [
"koa",
"route",
"router",
"middleware"
],
"scripts": {
"test": "standard && mocha"
},
"author": "gyson <eilian.yunsong@gmail.com>",
"license": "MIT",
"devDependencies": {
"koa": "^2.0.0-alpha.3",
"koa-route": "^3.0.0",
"mocha": "^2.3.3",
"sprintf-js": "^1.0.3",
"standard": "^5.3.1",
"supertest": "^1.1.0"
},
"dependencies": {
"koa-compose": "^3.0.0",
"methods": "^1.1.1",
"path-to-regexp": "^1.2.1"
},
"engines": {
"node": ">= 4"
}
}