package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "name": "eslint-plugin-eslint-comments",
  3. "version": "3.2.0",
  4. "description": "Additional ESLint rules for ESLint directive comments.",
  5. "engines": {
  6. "node": ">=6.5.0"
  7. },
  8. "main": "index.js",
  9. "files": [
  10. "lib"
  11. ],
  12. "peerDependencies": {
  13. "eslint": ">=4.19.1"
  14. },
  15. "dependencies": {
  16. "escape-string-regexp": "^1.0.5",
  17. "ignore": "^5.0.5"
  18. },
  19. "devDependencies": {
  20. "@mysticatea/eslint-plugin": "^13.0.0",
  21. "@types/node": "^14.0.1",
  22. "@vuepress/plugin-pwa": "^1.0.1",
  23. "babel-eslint": "^10.0.1",
  24. "codecov": "^3.3.0",
  25. "cross-spawn": "^6.0.5",
  26. "eslint": "^7.0.0",
  27. "eslint4b": "^7.0.0",
  28. "fs-extra": "^8.0.1",
  29. "mocha": "^6.1.4",
  30. "nyc": "^14.1.1",
  31. "opener": "^1.4.3",
  32. "rimraf": "^2.6.2",
  33. "semver": "^7.3.2",
  34. "string-replace-loader": "^2.1.1",
  35. "vue-eslint-editor": "^1.1.0",
  36. "vuepress": "^1.0.1"
  37. },
  38. "scripts": {
  39. "preversion": "npm test",
  40. "version": "node scripts/update && git add .",
  41. "postversion": "git push && git push --tags",
  42. "clean": "rimraf .nyc_output coverage docs/.vuepress/dist",
  43. "docs:build": "vuepress build docs",
  44. "docs:watch": "vuepress dev docs",
  45. "docs:deploy": "node scripts/deploy",
  46. "lint": "eslint lib scripts tests",
  47. "pretest": "npm run -s lint",
  48. "test": "nyc npm run -s test:mocha",
  49. "test:ci": "nyc npm run -s test:mocha",
  50. "test:mocha": "mocha \"tests/lib/**/*.js\" --reporter dot --timeout 8000",
  51. "watch": "npm run -s test:mocha -- --watch --growl",
  52. "coverage": "nyc report --reporter lcov && opener coverage/lcov-report/index.html",
  53. "codecov": "nyc report --reporter text-lcov | codecov --pipe --disable=gcov"
  54. },
  55. "repository": {
  56. "type": "git",
  57. "url": "git+https://github.com/mysticatea/eslint-plugin-eslint-comments.git"
  58. },
  59. "keywords": [
  60. "eslint",
  61. "eslintplugin",
  62. "eslint-plugin",
  63. "plugin",
  64. "comment",
  65. "comments",
  66. "directive",
  67. "global",
  68. "globals",
  69. "exported",
  70. "eslint-env",
  71. "eslint-enable",
  72. "eslint-disable",
  73. "eslint-disable-line",
  74. "eslint-disable-next-line"
  75. ],
  76. "author": "Toru Nagashima",
  77. "license": "MIT",
  78. "bugs": {
  79. "url": "https://github.com/mysticatea/eslint-plugin-eslint-comments/issues"
  80. },
  81. "homepage": "https://github.com/mysticatea/eslint-plugin-eslint-comments#readme",
  82. "funding": "https://github.com/sponsors/mysticatea"
  83. }