-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
32 lines (32 loc) · 897 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
{
"name": "rest-handler",
"description": "A module for creating a request handler that does REST style routing",
"homepage": "https://github.com/philidem/node-rest-handler",
"repository": {
"type": "git",
"url": "https://github.com/philidem/node-rest-handler.git"
},
"author": "Phil Gates-Idem <[email protected]>",
"main": "./index.js",
"devDependencies": {
"jasmine-node": "1.3.x",
"mocha": "~1.15.1",
"chai": "~1.8.1"
},
"scripts": {
"test": "node_modules/.bin/mocha --ui bdd --reporter spec ./test"
},
"dependencies": {
"basic-auth-parser": "0.0.2",
"path-based-router": "^1.1.3",
"raptor-async": "^1.1.2"
},
"keywords": [
"request",
"response",
"request handler",
"router",
"middleware"
],
"version": "1.2.17"
}