-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 936 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 936 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
{
"name": "httpware-response",
"version": "1.0.0",
"description": "monkey patch of response, compatible with connect/express, handover",
"main": "lib",
"scripts": {
"build": "coffee -c -b -o lib src ",
"clean": "rm -r lib",
"prepublish": "npm run-script build",
"postpublish": "npm run-script clean",
"test": "set TEST=true && mocha --compilers coffee:coffee-script/register --reporter spec"
},
"repository": {
"type": "git",
"url": "git://github.com/js-seth-h/httpware-response.git"
},
"keywords": [
"http",
"connect",
"response"
],
"author": "js.seth.h@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/js-seth-h/httpware-response/issues"
},
"homepage": "https://github.com/js-seth-h/httpware-response",
"dependencies": {
"debug": "^0.8.1"
},
"devDependencies": {
"connect": "^3.0.0-rc.2",
"supertest": "^0.12.1"
}
}