-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.18 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.18 KB
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
{
"name": "restful-client",
"version": "1.2.0",
"description": "RESTFul api client base object. Usually use by some api client implementation.",
"main": "index.js",
"files": [
"lib",
"index.js"
],
"scripts": {
"test": "mocha -R spec -t 20000 -r should-http test/*.test.js",
"test-cov": "node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 20000 -r should-http test/*.test.js",
"test-travis": "node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 20000 -r should-http test/*.test.js",
"jshint": "jshint .",
"autod": "autod -w --prefix '^'"
},
"dependencies": {
"debug": "^2.6.7",
"urllib": "^2.22.0"
},
"devDependencies": {
"autod": "*",
"istanbul": "*",
"mm": "^2.1.0",
"mocha": "*",
"should": "^11.2.1",
"should-http": "*"
},
"homepage": "https://github.com/node-modules/restful-client",
"repository": {
"type": "git",
"url": "git://github.com/node-modules/restful-client.git"
},
"keywords": [
"restful-client", "restful"
],
"engines": {
"node": ">= 0.12.0"
},
"author": "fengmk2 <fengmk2@gmail.com>",
"license": "MIT"
}