-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
59 lines (59 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
56
57
58
59
{
"name": "http-request",
"version": "0.7.0",
"main": "./lib/main.js",
"description": "General purpose HTTP / HTTPS client for node.js. Supports transparent gzip / deflate decoding.",
"engines": {
"node": ">= 0.8.5"
},
"dependencies": {
"form-data": ">= 0.1.2",
"mmmagic": ">= 0.3.4"
},
"devDependencies": {
"mocha": ">= 1.8.2",
"chai": ">= 1.5.0",
"js-beautify": ">= 0.4.2",
"jshint": ">= 2.5.6",
"multiparty": ">= 3.0.0"
},
"homepage": "https://github.com/SaltwaterC/http-get",
"author": {
"name": "Stefan Rusu",
"url": "http://www.saltwaterc.eu/"
},
"contributors": [{
"name": "cmtt",
"url": "https://github.com/cmtt"
}, {
"name": "elarcent",
"url": "https://github.com/elarcent"
}, {
"name": "Gil Pedersen",
"url": "https://github.com/kanongil"
}, {
"name": "Stefan Klug",
"url": "https://github.com/stefanklug"
}],
"repository": {
"type": "git",
"url": "git://github.com/SaltwaterC/http-get.git"
},
"keywords": [
"http",
"https",
"get",
"head",
"post",
"put",
"delete",
"download",
"upload",
"gzip",
"deflate",
"mime"
],
"scripts": {
"test": "make test"
}
}