package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "request-progress",
  3. "version": "3.0.0",
  4. "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",
  5. "main": "index.js",
  6. "dependencies": {
  7. "throttleit": "^1.0.0"
  8. },
  9. "devDependencies": {
  10. "coveralls": "^2.11.6",
  11. "expect.js": "^0.3.1",
  12. "istanbul": "^0.4.1",
  13. "mocha": "^3.0.2"
  14. },
  15. "scripts": {
  16. "test": "mocha --bail",
  17. "test-cov": "istanbul cover --dir test/coverage _mocha -- --bail && echo open test/coverage/lcov-report/index.html",
  18. "test-travis": "istanbul cover _mocha --report lcovonly -- --bail && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "git://github.com/IndigoUnited/node-request-progress"
  23. },
  24. "bugs": {
  25. "url": "http://github.com/IndigoUnited/node-request-progress/issues"
  26. },
  27. "keywords": [
  28. "progress",
  29. "request",
  30. "mikeal",
  31. "size",
  32. "bytes",
  33. "percent",
  34. "percentage",
  35. "speed",
  36. "eta",
  37. "etr"
  38. ],
  39. "author": "IndigoUnited <hello@indigounited.com> (http://indigounited.com)",
  40. "license": "MIT"
  41. }