-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 972 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
42
43
44
45
46
47
{
"name": "nodecap2",
"version": "2.2.0",
"description": "ICAP server framework for node.js - create custom HTTP proxy filters for Squid, etc.",
"main": "index.js",
"directories": {
"example": "examples",
"test": "test",
"lint": "eslint src/"
},
"engine": {
"node": ">= 4.4.6"
},
"dependencies": {
"eventemitter3": "^1.2.0",
"winston": "^2.2.0"
},
"optionalDependencies": {
"mmmagic": "^0.4.0"
},
"devDependencies": {
"eslint": "^3.3.1",
"tap": "^6.3.2"
},
"scripts": {
"tap": "tap",
"test": "tap ./test/*_spec.js",
"eslint": "eslint src/ examples/ test/"
},
"repository": {
"type": "git",
"url": "https://github.com/horpto/nodecap2"
},
"keywords": [
"nodejs",
"icap",
"http",
"proxy",
"filter",
"squid"
],
"author": "Joseph Savona <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/horpto/nodecap2/issues"
}
}