package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "isomorphic-fetch",
  3. "version": "2.2.1",
  4. "description": "Isomorphic WHATWG Fetch API, for Node & Browserify",
  5. "browser": "fetch-npm-browserify.js",
  6. "main": "fetch-npm-node.js",
  7. "scripts": {
  8. "files": "find . -name '*.js' ! -path './node_modules/*' ! -path './bower_components/*'",
  9. "test": "jshint `npm run -s files` && lintspaces -i js-comments -e .editorconfig `npm run -s files` && mocha"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/matthew-andrews/isomorphic-fetch.git"
  14. },
  15. "author": "Matt Andrews <matt@mattandre.ws>",
  16. "license": "MIT",
  17. "bugs": {
  18. "url": "https://github.com/matthew-andrews/isomorphic-fetch/issues"
  19. },
  20. "homepage": "https://github.com/matthew-andrews/isomorphic-fetch/issues",
  21. "dependencies": {
  22. "node-fetch": "^1.0.1",
  23. "whatwg-fetch": ">=0.10.0"
  24. },
  25. "devDependencies": {
  26. "chai": "^1.10.0",
  27. "es6-promise": "^2.0.1",
  28. "jshint": "^2.5.11",
  29. "lintspaces-cli": "0.0.4",
  30. "mocha": "^2.1.0",
  31. "nock": "^0.56.0",
  32. "npm-prepublish": "^1.0.2"
  33. }
  34. }