package.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. {
  2. "name": "vue-eslint-parser",
  3. "version": "7.11.0",
  4. "description": "The ESLint custom parser for `.vue` files.",
  5. "engines": {
  6. "node": ">=8.10"
  7. },
  8. "main": "index.js",
  9. "files": [
  10. "index.*"
  11. ],
  12. "peerDependencies": {
  13. "eslint": ">=5.0.0"
  14. },
  15. "dependencies": {
  16. "debug": "^4.1.1",
  17. "eslint-scope": "^5.1.1",
  18. "eslint-visitor-keys": "^1.1.0",
  19. "espree": "^6.2.1",
  20. "esquery": "^1.4.0",
  21. "lodash": "^4.17.21",
  22. "semver": "^6.3.0"
  23. },
  24. "devDependencies": {
  25. "@babel/core": "^7.15.0",
  26. "@babel/eslint-parser": "^7.15.0",
  27. "@babel/plugin-syntax-decorators": "^7.14.5",
  28. "@babel/plugin-syntax-pipeline-operator": "^7.15.0",
  29. "@babel/plugin-syntax-typescript": "^7.14.5",
  30. "@mysticatea/eslint-plugin": "^13.0.0",
  31. "@types/debug": "0.0.30",
  32. "@types/eslint": "^7.2.6",
  33. "@types/estree": "0.0.45",
  34. "@types/lodash": "^4.14.120",
  35. "@types/mocha": "^5.2.4",
  36. "@types/node": "^10.12.21",
  37. "@types/semver": "^7.3.6",
  38. "@typescript-eslint/eslint-plugin": "^4.9.1",
  39. "@typescript-eslint/parser": "^4.14.0",
  40. "babel-eslint": "^10.0.1",
  41. "chokidar": "^2.0.4",
  42. "codecov": "^3.1.0",
  43. "cross-spawn": "^6.0.5",
  44. "dts-bundle": "^0.7.3",
  45. "eslint": "^7.0.0",
  46. "eslint-plugin-jsonc": "^1.4.0",
  47. "eslint-plugin-node-dependencies": "^0.5.0",
  48. "fs-extra": "^7.0.1",
  49. "jsonc-eslint-parser": "^0.6.0",
  50. "mocha": "^6.1.4",
  51. "npm-run-all": "^4.1.5",
  52. "nyc": "^14.0.0",
  53. "opener": "^1.5.1",
  54. "prettier": "^2.3.1",
  55. "rimraf": "^2.6.3",
  56. "rollup": "^1.1.2",
  57. "rollup-plugin-node-resolve": "^4.0.0",
  58. "rollup-plugin-sourcemaps": "^0.4.2",
  59. "ts-node": "^8.1.0",
  60. "typescript": "~4.0.5",
  61. "wait-on": "^3.2.0",
  62. "warun": "^1.0.0"
  63. },
  64. "scripts": {
  65. "prebuild": "npm run -s clean",
  66. "build": "tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts",
  67. "clean": "rimraf .nyc_output .temp coverage index.*",
  68. "codecov": "codecov",
  69. "coverage": "opener ./coverage/lcov-report/index.html",
  70. "lint": "eslint src test package.json --ext .js,.ts",
  71. "setup": "git submodule update --init && cd test/fixtures/eslint && npm install",
  72. "pretest": "run-s build lint",
  73. "test": "npm run -s test:mocha",
  74. "test:mocha": "nyc mocha \"test/*.js\" --reporter dot --timeout 60000",
  75. "test:debug": "mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000",
  76. "preupdate-fixtures": "npm run -s build",
  77. "update-fixtures": "node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js",
  78. "preversion": "npm test",
  79. "version": "npm run -s build",
  80. "postversion": "git push && git push --tags",
  81. "prewatch": "npm run -s clean",
  82. "watch": "run-p watch:*",
  83. "watch:tsc": "tsc --module es2015 --watch",
  84. "watch:rollup": "wait-on .temp/index.js && rollup -c -o index.js --watch",
  85. "watch:test": "wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc mocha \"test/*.js\" --reporter dot --timeout 10000",
  86. "watch:update-ast": "wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js",
  87. "watch:coverage-report": "wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"
  88. },
  89. "repository": {
  90. "type": "git",
  91. "url": "git+https://github.com/vuejs/vue-eslint-parser.git"
  92. },
  93. "keywords": [],
  94. "author": "Toru Nagashima",
  95. "license": "MIT",
  96. "bugs": {
  97. "url": "https://github.com/vuejs/vue-eslint-parser/issues"
  98. },
  99. "homepage": "https://github.com/vuejs/vue-eslint-parser#readme",
  100. "funding": "https://github.com/sponsors/mysticatea"
  101. }