forked from ladjs/superagent
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.19 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
{
"name": "superagent",
"version": "0.18.0",
"description": "elegant & feature rich browser / node HTTP with a fluent API",
"scripts": {
"test": "make test"
},
"keywords": [
"http",
"ajax",
"request",
"agent"
],
"author": "TJ Holowaychuk <tj@vision-media.ca>",
"contributors": [
"Hunter Loftis <hunter@hunterloftis.com>"
],
"repository": {
"type": "git",
"url": "git://github.com/visionmedia/superagent.git"
},
"dependencies": {
"qs": "0.6.6",
"formidable": "1.0.14",
"mime": "1.2.11",
"component-emitter": "1.1.2",
"methods": "1.0.1",
"cookiejar": "1.3.2",
"debug": "~0.8.1",
"reduce-component": "1.0.1",
"extend": "~1.2.1",
"form-data": "0.1.3",
"readable-stream": "1.0.27-1"
},
"devDependencies": {
"zuul": "~1.6.0",
"express": "3.5.0",
"better-assert": "~0.1.0",
"should": "3.1.3",
"mocha": "*"
},
"browser": {
"./lib/node/index.js": "./lib/client.js",
"emitter": "component-emitter",
"reduce": "reduce-component"
},
"component": {
"scripts": {
"superagent": "lib/client.js"
}
},
"main": "./lib/node/index.js",
"engines": {
"node": "*"
}
}