forked from daguej/node-proxywrap
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
59 lines (59 loc) · 1.48 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
56
57
58
59
{
"name": "findhit-proxywrap",
"version": "0.3.13",
"description": "Wraps node's Server interfaces to be compatible with the PROXY protocol",
"main": "lib/proxywrap.js",
"files": [
"lib/**",
"yarn*"
],
"author": "Josh Dague",
"license": "BSD",
"contributors": [
{
"name": "José Moreira",
"email": "jose.moreira@findhit.com"
},
{
"name": "Bruno Casanova",
"email": "bruno.casanova@findhit.com"
},
{
"name": "Gabriel Conceição",
"email": "gabriel.conceicao@findhit.com"
}
],
"engines": {
"node": ">= 0.8"
},
"scripts": {
"dev": "mocha --debug-brk=5858 --globals setImmediate,clearImmediate --check-leaks --colors -t 3000 --reporter spec $(find test/* -name '*.test.js')",
"lint": "eslint .",
"test": "mocha --globals setImmediate,clearImmediate --check-leaks --colors -t 3000 --reporter spec $(find test/* -name '*.test.js')",
"preversion": "npm test",
"postversion": "git push origin master && git push origin --tags && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/findhit/proxywrap"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"bluebird": "^2.5.3",
"chai": "^1.10.0",
"eslint": "^3.19.0",
"findhit-util": "^0.2.3",
"mocha": "^2.1.0",
"sinon": "^1.12.2",
"spdy": "^3.4.4"
},
"keywords": [
"proxy",
"elb"
],
"bugs": {
"url": "https://github.com/findhit/proxywrap/issues"
}
}