-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1007 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
{
"name": "route-fs",
"version": "3.1.1",
"description": "A easy way to organize your routers.Say goodbye to writing route list by hand, just proxy to file system.",
"main": "index.js",
"scripts": {
"test": "mocha test/",
"cover": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
},
"repository": {
"type": "git",
"url": "https://github.com/karboom/route-fs"
},
"keywords": [
"route",
"fs",
"file system",
"restful",
"api",
"proxy"
],
"author": "karboom",
"license": "MIT",
"bugs": {
"url": "https://github.com/karboom/route-fs/issues"
},
"homepage": "https://github.com/karboom/route-fs",
"devDependencies": {
"express": "^4.13.3",
"istanbul": "^0.3.14",
"koa": "^1.1.2",
"mocha": "^2.0.1",
"mocha-lcov-reporter": "0.0.2",
"request": "^2.55.0",
"restify": "^3.0.2",
"should": "^6.0.1"
},
"dependencies": {
"koa-router": "^5.3.0"
}
}