-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "request-progress",
"version": "3.0.0",
"description": "Tracks the download progress of a request made with mikeal/request, giving insight of various metrics including progress percent, download speed and time remaining",
"main": "index.js",
"dependencies": {
"throttleit": "^1.0.0"
},
"devDependencies": {
"coveralls": "^2.11.6",
"expect.js": "^0.3.1",
"istanbul": "^0.4.1",
"mocha": "^3.0.2"
},
"scripts": {
"test": "mocha --bail",
"test-cov": "istanbul cover --dir test/coverage _mocha -- --bail && echo open test/coverage/lcov-report/index.html",
"test-travis": "istanbul cover _mocha --report lcovonly -- --bail && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git://github.com/IndigoUnited/node-request-progress"
},
"bugs": {
"url": "http://github.com/IndigoUnited/node-request-progress/issues"
},
"keywords": [
"progress",
"request",
"mikeal",
"size",
"bytes",
"percent",
"percentage",
"speed",
"eta",
"etr"
],
"author": "IndigoUnited <hello@indigounited.com> (http://indigounited.com)",
"license": "MIT"
}