package.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "name": "eslint-plugin-es-x",
  3. "version": "7.1.0",
  4. "description": "ESLint plugin about ECMAScript syntactic features.",
  5. "engines": {
  6. "node": "^14.18.0 || >=16.0.0"
  7. },
  8. "main": "lib/index.js",
  9. "files": [
  10. "lib"
  11. ],
  12. "peerDependencies": {
  13. "eslint": ">=8"
  14. },
  15. "dependencies": {
  16. "@eslint-community/eslint-utils": "^4.1.2",
  17. "@eslint-community/regexpp": "^4.5.0"
  18. },
  19. "devDependencies": {
  20. "@typescript-eslint/parser": "^5.14.0",
  21. "acorn": "^8.7.0",
  22. "env-cmd": "^10.1.0",
  23. "eslint": "^8.11.0",
  24. "eslint-plugin-eslint-comments": "^3.2.0",
  25. "eslint-plugin-eslint-plugin": "^5.0.0",
  26. "eslint-plugin-node": "^11.1.0",
  27. "eslint-plugin-prettier": "^4.0.0",
  28. "eslint-plugin-vue": "^9.0.0",
  29. "espree": "^9.3.1",
  30. "globals": "^13.0.0",
  31. "jsdom": "^22.0.0",
  32. "mocha": "^10.0.0",
  33. "monaco-editor": "^0.38.0",
  34. "npm-run-all": "^4.1.5",
  35. "nyc": "^15.0.0",
  36. "opener": "^1.5.1",
  37. "rimraf": "^5.0.0",
  38. "semver": "^7.0.0",
  39. "typescript": "^5.0.2",
  40. "vite-plugin-eslint4b": "^0.1.1",
  41. "vitepress": "^1.0.0-alpha.40",
  42. "vue-eslint-editor": "^1.1.0",
  43. "vue-eslint-parser": "^9.0.0"
  44. },
  45. "scripts": {
  46. "clean": "rimraf .nyc_output coverage",
  47. "coverage": "nyc report -r lcov && opener ./coverage/lcov-report/index.html",
  48. "docs:build": "vitepress build docs",
  49. "docs:watch": "vitepress dev docs",
  50. "lint": "eslint lib tests scripts eslint-internal docs/.vitepress --rulesdir eslint-internal/rules",
  51. "new": "node scripts/new-rule",
  52. "pretest": "npm run -s lint",
  53. "test": "npm run -s test:mocha",
  54. "test:mocha": "nyc mocha tests/**/*.js --reporter dot --timeout 60000",
  55. "test:debug": "mocha tests/**/*.js --reporter dot --timeout 60000",
  56. "update": "run-s update:*",
  57. "update:url": "npm run -s lint -- --fix",
  58. "update:configs": "node scripts/update-lib-configs",
  59. "update:index": "node scripts/update-lib-index",
  60. "update:doc": "node scripts/update-docs-readme",
  61. "update:ruledocs": "node scripts/update-docs-rules",
  62. "resource-update:unicode-properties": "node scripts/update-unicode-properties",
  63. "preversion": "npm test",
  64. "version": "env-cmd -e version run-s update:* && git add .",
  65. "postversion": "git push && git push --tags",
  66. "watch": "mocha tests/**/*.js --reporter progress --watch --growl"
  67. },
  68. "repository": {
  69. "type": "git",
  70. "url": "git+https://github.com/eslint-community/eslint-plugin-es-x.git"
  71. },
  72. "keywords": [
  73. "eslint",
  74. "plugin",
  75. "eslintplugin"
  76. ],
  77. "author": "Toru Nagashima (https://github.com/mysticatea)",
  78. "license": "MIT",
  79. "bugs": {
  80. "url": "https://github.com/eslint-community/eslint-plugin-es-x/issues"
  81. },
  82. "homepage": "https://github.com/eslint-community/eslint-plugin-es-x#readme",
  83. "funding": "https://github.com/sponsors/ota-meshi"
  84. }