package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "eslint-utils",
  3. "version": "1.4.3",
  4. "description": "Utilities for ESLint plugins.",
  5. "engines": {
  6. "node": ">=6"
  7. },
  8. "sideEffects": false,
  9. "main": "index",
  10. "module": "index.mjs",
  11. "files": [
  12. "index.*"
  13. ],
  14. "dependencies": {
  15. "eslint-visitor-keys": "^1.1.0"
  16. },
  17. "devDependencies": {
  18. "@mysticatea/eslint-plugin": "^12.0.0",
  19. "codecov": "^3.6.1",
  20. "dot-prop": "^4.2.0",
  21. "eslint": "^6.5.1",
  22. "esm": "^3.2.25",
  23. "espree": "^6.1.1",
  24. "mocha": "^6.2.2",
  25. "npm-run-all": "^4.1.5",
  26. "nyc": "^14.1.1",
  27. "opener": "^1.5.1",
  28. "rimraf": "^3.0.0",
  29. "rollup": "^1.25.0",
  30. "rollup-plugin-sourcemaps": "^0.4.2",
  31. "vuepress": "^1.2.0",
  32. "warun": "^1.0.0"
  33. },
  34. "scripts": {
  35. "prebuild": "npm run -s clean",
  36. "build": "rollup -c",
  37. "clean": "rimraf .nyc_output coverage index.*",
  38. "codecov": "nyc report -r lcovonly && codecov",
  39. "coverage": "opener ./coverage/lcov-report/index.html",
  40. "docs:build": "vuepress build docs",
  41. "docs:watch": "vuepress dev docs",
  42. "lint": "eslint src test",
  43. "test": "run-s lint build test:mocha",
  44. "test:mocha": "nyc mocha --reporter dot \"test/*.js\"",
  45. "preversion": "npm test && npm run -s build",
  46. "postversion": "git push && git push --tags",
  47. "prewatch": "npm run -s clean",
  48. "watch": "warun \"{src,test}/**/*.js\" -- npm run -s test:mocha"
  49. },
  50. "repository": {
  51. "type": "git",
  52. "url": "git+https://github.com/mysticatea/eslint-utils.git"
  53. },
  54. "keywords": [
  55. "eslint"
  56. ],
  57. "author": "Toru Nagashima",
  58. "license": "MIT",
  59. "bugs": {
  60. "url": "https://github.com/mysticatea/eslint-utils/issues"
  61. },
  62. "homepage": "https://github.com/mysticatea/eslint-utils#readme"
  63. }