-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.04 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
{
"name": "koa-detour",
"version": "2.3.0",
"description": "Resource-oriented routing for Koa 2+",
"main": "lib/index.js",
"scripts": {
"test": "eslint test lib; NODE_ENV=testing nyc mocha --reporter spec",
"cover": "nyc report --reporter=text-lcov | coveralls",
"travis": "npm run test; npm run cover;"
},
"repository": {
"type": "git",
"url": "git://github.com/bttmly/koa-detour.git"
},
"keywords": [
"router",
"resourceful",
"resource",
"rest",
"route",
"middleware",
"http",
"api"
],
"authors": [
"Gregg Caines",
"Nick Bottomley"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/bttmly/koa-detour/issues"
},
"homepage": "https://github.com/bttmly/koa-detour",
"devDependencies": {
"coveralls": "^2.6.1",
"eslint": "^3.14.1",
"expect": "^1.20.2",
"istanbul": "^0.2.3",
"koa": "^2.0.0",
"mocha": "1.16.2",
"nyc": "^8.3.1",
"verity": "^0.8.1"
},
"dependencies": {
"methods": "0.1.0",
"path-to-regexp": "^1.6.0"
}
}