package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "@eslint-community/eslint-utils",
  3. "version": "4.1.2",
  4. "description": "Utilities for ESLint plugins.",
  5. "keywords": [
  6. "eslint"
  7. ],
  8. "homepage": "https://github.com/eslint-community/eslint-utils#readme",
  9. "bugs": {
  10. "url": "https://github.com/eslint-community/eslint-utils/issues"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/eslint-community/eslint-utils"
  15. },
  16. "license": "MIT",
  17. "author": "Toru Nagashima",
  18. "sideEffects": false,
  19. "exports": {
  20. ".": {
  21. "import": "./index.mjs",
  22. "require": "./index.js"
  23. },
  24. "./package.json": "./package.json"
  25. },
  26. "main": "index",
  27. "module": "index.mjs",
  28. "files": [
  29. "index.*"
  30. ],
  31. "scripts": {
  32. "prebuild": "npm run -s clean",
  33. "build": "rollup -c",
  34. "clean": "rimraf .nyc_output coverage index.*",
  35. "coverage": "opener ./coverage/lcov-report/index.html",
  36. "docs:build": "vuepress build docs",
  37. "docs:watch": "vuepress dev docs",
  38. "format": "npm run -s format:prettier -- --write",
  39. "format:prettier": "prettier .",
  40. "format:check": "npm run -s format:prettier -- --check",
  41. "lint": "eslint .",
  42. "test": "nyc mocha --reporter dot \"test/*.js\"",
  43. "preversion": "npm test && npm run -s build",
  44. "postversion": "git push && git push --tags",
  45. "prewatch": "npm run -s clean",
  46. "watch": "warun \"{src,test}/**/*.js\" -- npm run -s test:mocha"
  47. },
  48. "dependencies": {
  49. "eslint-visitor-keys": "^3.3.0"
  50. },
  51. "devDependencies": {
  52. "@babel/core": "^7.20.2",
  53. "@babel/plugin-transform-modules-commonjs": "^7.19.6",
  54. "@babel/register": "^7.18.9",
  55. "@eslint-community/eslint-plugin-mysticatea": "^15.2.0",
  56. "dot-prop": "^6.0.1",
  57. "eslint": "^8.28.0",
  58. "mocha": "^9.2.2",
  59. "npm-run-all": "^4.1.5",
  60. "nyc": "^15.1.0",
  61. "opener": "^1.5.2",
  62. "prettier": "2.8.0",
  63. "rimraf": "^3.0.2",
  64. "rollup": "^2.79.1",
  65. "rollup-plugin-sourcemaps": "^0.6.3",
  66. "semver": "^7.3.8",
  67. "vuepress": "^1.9.7",
  68. "warun": "^1.0.0"
  69. },
  70. "peerDependencies": {
  71. "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
  72. },
  73. "engines": {
  74. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  75. }
  76. }