-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
54 lines (54 loc) · 1.32 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
49
50
51
52
53
54
{
"name": "connect-injector",
"description": "A middleware to inject content into any HTTP response.",
"version": "0.4.4",
"homepage": "https://github.com/daffl/connect-injector",
"author": {
"name": "David Luecke",
"email": "daff@neyeon.com"
},
"scripts": {
"publish": "git push origin && git push origin --tags",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"jshint": "jshint lib/. --config",
"test": "npm run jshint && mocha test/"
},
"repository": {
"type": "git",
"url": "git://github.com/daffl/connect-injector.git"
},
"bugs": {
"url": "https://github.com/daffl/connect-injector/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/daffl/connect-injector/blob/master/LICENSE-MIT"
}
],
"main": "lib/connect-injector",
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"debug": "^2.0.0",
"q": "^1.0.1",
"stream-buffers": "^0.2.3",
"uberproto": "^1.1.0"
},
"devDependencies": {
"connect": "^2.7.2",
"http-proxy": "^1.1.5",
"jshint": "^2.9.2",
"mocha": "1.8.1",
"request": "2.12.0",
"should": "1.2.1"
},
"keywords": [
"connect",
"middleware",
"http"
]
}