-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
38 lines (38 loc) · 857 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
{
"name": "koa-resource-router",
"description": "RESTful resource routing for koa.",
"repository": {
"type": "git",
"url": "https://github.com/alexmingoia/koa-resource-router.git"
},
"author": "Alex Mingoia <[email protected]>",
"version": "0.4.0",
"keywords": [
"rest",
"resource",
"koa",
"router",
"middleware"
],
"main": "./lib/resource.js",
"dependencies": {
"debug": "^2.1.1",
"defaults": "^1.0.0",
"koa-compose": "^2.3.0",
"path-to-regexp": "^1.0.3",
"pluralize": "^1.1.1"
},
"devDependencies": {
"koa": "^0.15.0",
"mocha": "^2.1.0",
"should": "^4.6.1",
"supertest": "^0.15.0"
},
"scripts": {
"test": "NODE_ENV=test node_modules/mocha/bin/mocha --harmony-generators --reporter spec"
},
"engines": {
"node": "> 0.11.4"
},
"license": "MIT"
}