-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
55 lines (55 loc) · 1.13 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
55
{
"name": "express-interceptor",
"version": "1.2.0",
"description": "A tiny interceptor for Express responses",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha"
},
"author": "AxiomZen (https://axiomzen.co)",
"keywords": [
"express",
"expressjs",
"middleware",
"modify",
"response",
"hack",
"interceptor",
"hijack",
"hijackresponse"
],
"contributors": [
{
"name": "Fabiano P Soriani",
"email": "[email protected]",
"url": "https://github.com/flockonus"
},
{
"name": "Raul Pino",
"email": "[email protected]",
"url": "https://github.com/p1nox"
}
],
"repository": {
"type": "git",
"url": "https://github.com/axiomzen/express-interceptor"
},
"bugs": {
"url": "https://github.com/axiomzen/express-interceptor/issues"
},
"license": "MIT",
"devDependencies": {
"cheerio": "^0.19.0",
"express": "^4.12.4",
"jade": "^1.10.0",
"mocha": "^2.2.5",
"unexpected": "9.5.0",
"unexpected-express": "7.7.0"
},
"dependencies": {
"debug": "^2.2.0"
}
}