forked from undoZen/promisingagent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.31 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
{
"name": "promisingagent",
"version": "4.2.0",
"description": "superagent wrapped with bluebird with convenient helpers",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "rm -rf coverage/ && prove --exec \"istanbul cover --include-pid --report none --print none\" test/cases/node.js && istanbul report --report cobertura --report html --report text-summary",
"test-browser": "browserify test/cases/browser.js > test/browser/test.js && node test/browser/server",
"test-watch": "nodemon -w index.js -w test/ ./node_modules/.bin/tape test/cases/node.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/undoZen/promisingagent.git"
},
"keywords": [
"bluebird",
"promise",
"request",
"superagent"
],
"author": "undoZen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/undoZen/promisingagent/issues"
},
"homepage": "https://github.com/undoZen/promisingagent#readme",
"dependencies": {
"bluebird": "^2.9",
"extend": "^2.0.1",
"qs": "^3",
"superagent": "^1.2"
},
"devDependencies": {
"browserify": "^10.2.1",
"concat-stream": "^1.4.8",
"destroy": "^1.0.3",
"is-browser": "^2.0.1",
"istanbul": "^0.3.19",
"tap-browser-color": "^0.1.2",
"tape": "^4.0.0"
}
}