-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 761 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 761 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
{
"name": "restless",
"version": "0.0.10",
"description": "REST client library for node.js (based on restler but with callbacks)",
"contributors": [
{ "name": "Dan Webb", "email": "dan@danwebb.net" },
{ "name": "Blake VanLandingham", "email": "blakevanlan@gmail.com"}
],
"homepage": "https://github.com/blakevanlan/restless",
"directories" : { "lib" : "./lib" },
"main" : "./lib/restless",
"engines": { "node": ">= 0.6.x" },
"dependencies": {
},
"optionalDependencies": {
"xml2js" : ">=0.1.0",
"yaml" : ">=0.2.0",
"iconv": ">=1.0.0"
},
"devDependencies": {
"mocha" : "1.2.2",
"should": "0.6.3"
},
"scripts": {
"test": "mocha --recursive --reporter spec"
}
}