package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "eslint-import-resolver-node",
  3. "version": "0.3.6",
  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. "coveralls": "nyc report --reporter lcovonly && cd ../.. && coveralls < ./resolvers/node/coverage/lcov.info"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/import-js/eslint-plugin-import"
  18. },
  19. "keywords": [
  20. "eslint",
  21. "eslintplugin",
  22. "esnext",
  23. "modules",
  24. "eslint-plugin-import"
  25. ],
  26. "author": "Ben Mosher (me@benmosher.com)",
  27. "license": "MIT",
  28. "bugs": {
  29. "url": "https://github.com/import-js/eslint-plugin-import/issues"
  30. },
  31. "homepage": "https://github.com/import-js/eslint-plugin-import",
  32. "dependencies": {
  33. "debug": "^3.2.7",
  34. "resolve": "^1.20.0"
  35. },
  36. "devDependencies": {
  37. "chai": "^3.5.0",
  38. "coveralls": "^3.1.0",
  39. "mocha": "^3.5.3",
  40. "nyc": "^11.9.0"
  41. }
  42. }