package.json 987 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "eslint-import-resolver-node",
  3. "version": "0.3.9",
  4. "description": "Node default behavior import resolution plugin for eslint-plugin-import.",
  5. "main": "index.js",
  6. "files": [
  7. "index.js"
  8. ],
  9. "scripts": {
  10. "prepublishOnly": "cp ../../{LICENSE,.npmrc} ./",
  11. "tests-only": "nyc mocha",
  12. "test": "npm run tests-only"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/import-js/eslint-plugin-import"
  17. },
  18. "keywords": [
  19. "eslint",
  20. "eslintplugin",
  21. "esnext",
  22. "modules",
  23. "eslint-plugin-import"
  24. ],
  25. "author": "Ben Mosher (me@benmosher.com)",
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/import-js/eslint-plugin-import/issues"
  29. },
  30. "homepage": "https://github.com/import-js/eslint-plugin-import",
  31. "dependencies": {
  32. "debug": "^3.2.7",
  33. "is-core-module": "^2.13.0",
  34. "resolve": "^1.22.4"
  35. },
  36. "devDependencies": {
  37. "chai": "^3.5.0",
  38. "mocha": "^3.5.3",
  39. "nyc": "^11.9.0"
  40. }
  41. }