-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 995 Bytes
/
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
{
"name": "request-retry-stream",
"version": "2.1.2",
"description": "Request wrapper with retries, focused on streaming",
"main": "index.js",
"scripts": {
"test": "istanbul cover _mocha",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/debitoor/request-retry-stream"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/debitoor/request-retry-stream/issues"
},
"homepage": "https://github.com/debitoor/request-retry-stream",
"devDependencies": {
"chai": "3.5.0",
"chai-subset": "1.6.0",
"coveralls": "3.0.0",
"express": "4.14.0",
"istanbul": "0.4.5",
"jscs": "3.0.7",
"mocha": "3.0.2",
"mocha-eslint": "3.0.0",
"mocha-jscs": "5.0.1",
"multifetch": "1.1.1"
},
"dependencies": {
"concat-stream": "1.5.2",
"once": "1.3.3",
"pump": "1.0.3",
"request": "2.88.2"
},
"files": [
"index.js",
"ProxyStream.js"
]
}