-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 883 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
{
"name": "http-util",
"version": "0.1.4",
"author": "biril <[email protected]>",
"description": "Miscellaneous HTTP gimmicks",
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/biril/http-util"
},
"bugs": "https://github.com/biril/http-util/issues",
"license": "MIT",
"keywords": [
"http",
"https",
"util",
"request",
"proxy",
"stream"
],
"dependencies": {
"colors": "^1.1.2",
"underscore": "^1.8.3"
},
"devDependencies": {
"concat-stream": "^1.5.2",
"eslint": "^3.7.1",
"jasmine-node": "^1.14.5",
"nock": "^8.1.0"
},
"scripts": {
"lint": "eslint --quiet --config .eslintrc.json ./lib/*",
"test": "./node_modules/.bin/jasmine-node --verbose --color ./test/spec/"
},
"engines": {
"node": ">=0.12"
},
"directories": {
"test": "test"
}
}