package.json 627 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "eslint-plugin-fetch-options",
  3. "version": "0.0.5",
  4. "description": "Prevent default fetch() call behaviour",
  5. "keywords": [
  6. "eslint",
  7. "eslintplugin",
  8. "eslint-plugin",
  9. "fetch"
  10. ],
  11. "author": "Andrei Oprea",
  12. "main": "index.js",
  13. "scripts": {
  14. "test": "node ./tests/lib/rules/no-fetch-credentials.js"
  15. },
  16. "bugs": "https://github.com/piatra/eslint-plugin-fetch/issues",
  17. "devDependencies": {
  18. "eslint": "3.9.1"
  19. },
  20. "engines": {
  21. "node": ">=0.9.0"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "https://github.com/piatra/eslint-plugin-fetch.git"
  26. },
  27. "license": "MIT"
  28. }