package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "eslint-plugin-es",
  3. "version": "3.0.1",
  4. "description": "ESLint plugin about ECMAScript syntactic features.",
  5. "engines": {
  6. "node": ">=8.10.0"
  7. },
  8. "main": "lib/index.js",
  9. "files": [
  10. "lib"
  11. ],
  12. "peerDependencies": {
  13. "eslint": ">=4.19.1"
  14. },
  15. "dependencies": {
  16. "eslint-utils": "^2.0.0",
  17. "regexpp": "^3.0.0"
  18. },
  19. "devDependencies": {
  20. "@mysticatea/eslint-plugin": "^11.0.0",
  21. "@vuepress/plugin-pwa": "^1.2.0",
  22. "acorn": "^7.1.0",
  23. "babel-eslint": "^10.0.1",
  24. "codecov": "^3.5.0",
  25. "eslint": "^6.2.2",
  26. "eslint4b": "^6.2.2",
  27. "espree": "^7.0.0",
  28. "globals": "^12.0.0",
  29. "mocha": "^6.2.0",
  30. "npm-run-all": "^4.1.5",
  31. "nyc": "^14.1.1",
  32. "opener": "^1.5.1",
  33. "rimraf": "^3.0.0",
  34. "semver": "^6.3.0",
  35. "vue-eslint-editor": "^0.2.0",
  36. "vuepress": "^1.2.0"
  37. },
  38. "scripts": {
  39. "clean": "rimraf .nyc_output coverage",
  40. "codecov": "nyc report -r lcovonly && codecov -t ${CODECOV_TOKEN} --disable=gcov",
  41. "coverage": "nyc report -r lcov && opener ./coverage/lcov-report/index.html",
  42. "docs:build": "vuepress build docs",
  43. "docs:watch": "vuepress dev docs",
  44. "lint": "eslint lib tests scripts",
  45. "new": "node scripts/new-rule",
  46. "pretest": "npm run -s lint",
  47. "test": "npm run -s test:mocha",
  48. "test:mocha": "nyc mocha tests/**/*.js --reporter dot",
  49. "update": "run-s update:*",
  50. "update:url": "npm run -s lint -- --fix",
  51. "update:ruledocs": "node scripts/update-docs-rules",
  52. "update:index": "node scripts/update-index",
  53. "preversion": "npm test",
  54. "version": "run-s update:* docs:build && git add .",
  55. "postversion": "git push && git push --tags",
  56. "watch": "mocha tests/**/*.js --reporter progress --watch --growl"
  57. },
  58. "repository": {
  59. "type": "git",
  60. "url": "git+https://github.com/mysticatea/eslint-plugin-es.git"
  61. },
  62. "keywords": [
  63. "eslint",
  64. "plugin",
  65. "eslintplugin"
  66. ],
  67. "author": "Toru Nagashima (https://github.com/mysticatea)",
  68. "license": "MIT",
  69. "bugs": {
  70. "url": "https://github.com/mysticatea/eslint-plugin-es/issues"
  71. },
  72. "homepage": "https://github.com/mysticatea/eslint-plugin-es#readme",
  73. "funding": "https://github.com/sponsors/mysticatea"
  74. }