package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "node-fetch",
  3. "version": "2.1.2",
  4. "description": "A light-weight module that brings window.fetch to node.js",
  5. "main": "lib/index.js",
  6. "browser": "./browser.js",
  7. "module": "lib/index.es.js",
  8. "files": [
  9. "lib/index.js",
  10. "lib/index.es.js",
  11. "browser.js"
  12. ],
  13. "engines": {
  14. "node": "4.x || >=6.0.0"
  15. },
  16. "scripts": {
  17. "build": "cross-env BABEL_ENV=rollup rollup -c",
  18. "prepare": "npm run build",
  19. "test": "cross-env BABEL_ENV=test mocha --compilers js:babel-register test/test.js",
  20. "report": "cross-env BABEL_ENV=coverage nyc --reporter lcov --reporter text mocha -R spec test/test.js",
  21. "coverage": "cross-env BABEL_ENV=coverage nyc --reporter json --reporter text mocha -R spec test/test.js && codecov -f coverage/coverage-final.json"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "https://github.com/bitinn/node-fetch.git"
  26. },
  27. "keywords": [
  28. "fetch",
  29. "http",
  30. "promise"
  31. ],
  32. "author": "David Frank",
  33. "license": "MIT",
  34. "bugs": {
  35. "url": "https://github.com/bitinn/node-fetch/issues"
  36. },
  37. "homepage": "https://github.com/bitinn/node-fetch",
  38. "devDependencies": {
  39. "babel-core": "^6.26.0",
  40. "babel-plugin-istanbul": "^4.1.5",
  41. "babel-preset-env": "^1.6.1",
  42. "babel-register": "^6.16.3",
  43. "chai": "^3.5.0",
  44. "chai-as-promised": "^7.1.1",
  45. "chai-iterator": "^1.1.1",
  46. "chai-string": "^1.3.0",
  47. "codecov": "^3.0.0",
  48. "cross-env": "^5.1.3",
  49. "form-data": "^2.3.1",
  50. "mocha": "^5.0.0",
  51. "nyc": "^11.4.1",
  52. "parted": "^0.1.1",
  53. "promise": "^8.0.1",
  54. "resumer": "0.0.0",
  55. "rollup": "^0.55.1",
  56. "rollup-plugin-babel": "^3.0.3",
  57. "string-to-arraybuffer": "^1.0.0",
  58. "url-search-params": "^0.10.0",
  59. "whatwg-url": "^5.0.0"
  60. },
  61. "dependencies": {}
  62. }