-
Notifications
You must be signed in to change notification settings - Fork 381
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 783 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 783 Bytes
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
{
"name": "restler",
"version": "3.4.0",
"description": "An HTTP client library for node.js",
"contributors": [
{
"name": "Dan Webb",
"email": "dan@danwebb.net"
},
{
"name": "Ben Marvell",
"email": "ben@marvell-consulting.com"
}
],
"homepage": "https://github.com/danwrong/restler",
"repository": {
"type": "git",
"url": "https://github.com/danwrong/restler.git"
},
"directories": {
"lib": "./lib"
},
"main": "./lib/restler",
"engines": {
"node": ">= 0.10.x"
},
"scripts": {
"test": "node test/all.js"
},
"dependencies": {
"qs": "1.2.0",
"xml2js": "0.4.0",
"yaml": "0.2.3",
"iconv-lite": "0.2.11"
},
"devDependencies": {
"nodeunit": "0.8.2"
},
"license": "MIT"
}