forked from node-modules/restful-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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
{
"name": "restful-client",
"version": "1.1.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 '~' && npm run cnpm",
"cnpm": "npm install --registry=https://registry.npm.taobao.org"
},
"dependencies": {
"debug": "~2.2.0",
"urllib": "~2.3.8"
},
"devDependencies": {
"autod": "*",
"istanbul-harmony": "*",
"mm": "*",
"mocha": "*",
"should": "6",
"should-http": "*"
},
"homepage": "https://github.com/node-modules/restful-client",
"repository": {
"type": "git",
"url": "git://github.com/z/restful-client.git"
},
"keywords": [
"restful-client", "restful"
],
"engines": {
"node": ">= 0.10.0"
},
"author": "fengmk2 <[email protected]>",
"license": "MIT"
}