forked from ladjs/superagent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.57 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
60
61
62
63
64
65
66
67
{
"name": "superagent",
"version": "2.1.0-beta.1",
"description": "elegant & feature rich browser / node HTTP with a fluent API",
"scripts": {
"prepublish": "make all",
"test": "make test"
},
"keywords": [
"http",
"ajax",
"request",
"agent"
],
"license": "MIT",
"author": "TJ Holowaychuk <tj@vision-media.ca>",
"contributors": [
"Kornel Lesiński <kornel@geekhood.net>",
"Peter Lyons <pete@peterlyons.com>",
"Hunter Loftis <hunter@hunterloftis.com>"
],
"repository": {
"type": "git",
"url": "git://github.com/visionmedia/superagent.git"
},
"dependencies": {
"qs": "^6.1.0",
"formidable": "^1.0.17",
"mime": "^1.3.4",
"component-emitter": "^1.2.0",
"methods": "^1.1.1",
"cookiejar": "^2.0.6",
"debug": "^2.2.0",
"extend": "^3.0.0",
"form-data": "1.0.0-rc4",
"readable-stream": "^2.0.5"
},
"devDependencies": {
"Base64": "^0.3.0",
"basic-auth-connect": "^1.0.0",
"better-assert": "^1.0.1",
"body-parser": "^1.15.0",
"browserify": "^13.0.0",
"cookie-parser": "^1.4.1",
"express": "^4.13.4",
"express-session": "^1.13.0",
"marked": "^0.3.5",
"mocha": "^2.4.5",
"should": "^8.2.2",
"should-http": "^0.0.4",
"zuul": "^3.10.1"
},
"browser": {
"./lib/node/index.js": "./lib/client.js",
"emitter": "component-emitter",
"./test/support/server.js": "./test/support/blank.js"
},
"component": {
"scripts": {
"superagent": "lib/client.js"
}
},
"main": "./lib/node/index.js",
"engines": {
"node": ">= 0.10"
}
}