package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "eslint-plugin-node",
  3. "version": "6.0.1",
  4. "description": "Additional ESLint's rules for Node.js",
  5. "main": "lib/index.js",
  6. "files": [
  7. "lib"
  8. ],
  9. "scripts": {
  10. "build": "node scripts/update.js",
  11. "clean": "rimraf .nyc_output coverage",
  12. "codecov": "nyc report -r lcovonly && codecov",
  13. "coverage": "nyc report -r lcov && opener ./coverage/lcov-report/index.html",
  14. "lint": "eslint lib tests/lib index.js",
  15. "postversion": "git push && git push --tags",
  16. "pretest": "npm run -s lint",
  17. "preversion": "npm t && npm run -s build",
  18. "test": "nyc npm run -s test:_mocha",
  19. "test:_mocha": "_mocha tests/lib/**/*.js --reporter progress",
  20. "watch": "npm run test:_mocha -- --watch --growl"
  21. },
  22. "engines": {
  23. "node": ">=4"
  24. },
  25. "peerDependencies": {
  26. "eslint": ">=3.1.0"
  27. },
  28. "dependencies": {
  29. "ignore": "^3.3.6",
  30. "minimatch": "^3.0.4",
  31. "resolve": "^1.3.3",
  32. "semver": "^5.4.1"
  33. },
  34. "devDependencies": {
  35. "codecov": "^3.0.0",
  36. "eslint": "^4.17.0",
  37. "eslint-config-mysticatea": "^13.0.2",
  38. "mocha": "^5.0.0",
  39. "nyc": "^11.0.1",
  40. "opener": "^1.4.3",
  41. "rimraf": "^2.6.1",
  42. "shelljs": "^0.8.1"
  43. },
  44. "repository": {
  45. "type": "git",
  46. "url": "git+https://github.com/mysticatea/eslint-plugin-node.git"
  47. },
  48. "keywords": [
  49. "eslint",
  50. "eslintplugin",
  51. "eslint-plugin",
  52. "node",
  53. "nodejs",
  54. "ecmascript",
  55. "shebang",
  56. "file",
  57. "path",
  58. "import",
  59. "require"
  60. ],
  61. "author": "Toru Nagashima",
  62. "license": "MIT",
  63. "bugs": {
  64. "url": "https://github.com/mysticatea/eslint-plugin-node/issues"
  65. },
  66. "homepage": "https://github.com/mysticatea/eslint-plugin-node#readme"
  67. }