package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "node-fetch",
  3. "version": "1.7.3",
  4. "description": "A light-weight module that brings window.fetch to node.js and io.js",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha test/test.js",
  8. "report": "istanbul cover _mocha -- -R spec test/test.js",
  9. "coverage": "istanbul cover _mocha --report lcovonly -- -R spec test/test.js && codecov"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/bitinn/node-fetch.git"
  14. },
  15. "keywords": [
  16. "fetch",
  17. "http",
  18. "promise"
  19. ],
  20. "author": "David Frank",
  21. "license": "MIT",
  22. "bugs": {
  23. "url": "https://github.com/bitinn/node-fetch/issues"
  24. },
  25. "homepage": "https://github.com/bitinn/node-fetch",
  26. "devDependencies": {
  27. "bluebird": "^3.3.4",
  28. "chai": "^3.5.0",
  29. "chai-as-promised": "^5.2.0",
  30. "codecov": "^1.0.1",
  31. "form-data": ">=1.0.0",
  32. "istanbul": "^0.4.2",
  33. "mocha": "^2.1.0",
  34. "parted": "^0.1.1",
  35. "promise": "^7.1.1",
  36. "resumer": "0.0.0"
  37. },
  38. "dependencies": {
  39. "encoding": "^0.1.11",
  40. "is-stream": "^1.0.1"
  41. }
  42. }