package.json 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. {
  2. "_from": "vue-eslint-parser@^8.0.1",
  3. "_id": "vue-eslint-parser@8.3.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-dzHGG3+sYwSf6zFBa0Gi9ZDshD7+ad14DGOdTLjruRVgZXe2J+DcZ9iUhyR48z5g1PqRa20yt3Njna/veLJL/g==",
  6. "_location": "/vue-eslint-parser",
  7. "_phantomChildren": {
  8. "esrecurse": "4.3.0",
  9. "lru-cache": "6.0.0"
  10. },
  11. "_requested": {
  12. "type": "range",
  13. "registry": true,
  14. "raw": "vue-eslint-parser@^8.0.1",
  15. "name": "vue-eslint-parser",
  16. "escapedName": "vue-eslint-parser",
  17. "rawSpec": "^8.0.1",
  18. "saveSpec": null,
  19. "fetchSpec": "^8.0.1"
  20. },
  21. "_requiredBy": [
  22. "/eslint-plugin-nuxt",
  23. "/eslint-plugin-vue"
  24. ],
  25. "_resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-8.3.0.tgz",
  26. "_shasum": "5d31129a1b3dd89c0069ca0a1c88f970c360bd0d",
  27. "_spec": "vue-eslint-parser@^8.0.1",
  28. "_where": "H:\\gs_nuxt\\node_modules\\eslint-plugin-vue",
  29. "author": {
  30. "name": "Toru Nagashima"
  31. },
  32. "bugs": {
  33. "url": "https://github.com/vuejs/vue-eslint-parser/issues"
  34. },
  35. "bundleDependencies": false,
  36. "dependencies": {
  37. "debug": "^4.3.2",
  38. "eslint-scope": "^7.0.0",
  39. "eslint-visitor-keys": "^3.1.0",
  40. "espree": "^9.0.0",
  41. "esquery": "^1.4.0",
  42. "lodash": "^4.17.21",
  43. "semver": "^7.3.5"
  44. },
  45. "deprecated": false,
  46. "description": "The ESLint custom parser for `.vue` files.",
  47. "devDependencies": {
  48. "@babel/core": "^7.16.0",
  49. "@babel/eslint-parser": "^7.16.3",
  50. "@babel/plugin-syntax-decorators": "^7.16.0",
  51. "@babel/plugin-syntax-pipeline-operator": "^7.16.0",
  52. "@babel/plugin-syntax-typescript": "^7.16.0",
  53. "@types/debug": "^4.1.7",
  54. "@types/eslint": "^7.29.0",
  55. "@types/estree": "^0.0.50",
  56. "@types/lodash": "^4.14.177",
  57. "@types/mocha": "^9.0.0",
  58. "@types/node": "^16.11.7",
  59. "@types/semver": "^7.3.9",
  60. "@typescript-eslint/eslint-plugin": "^5.4.0",
  61. "@typescript-eslint/parser": "^5.4.0",
  62. "chokidar": "^3.5.2",
  63. "codecov": "^3.8.3",
  64. "cross-spawn": "^7.0.3",
  65. "dts-bundle": "^0.7.3",
  66. "eslint": "^8.2.0",
  67. "eslint-plugin-eslint-comments": "^3.2.0",
  68. "eslint-plugin-jsonc": "^2.0.0",
  69. "eslint-plugin-node": "^11.1.0",
  70. "eslint-plugin-node-dependencies": "^0.6.0",
  71. "eslint-plugin-prettier": "^4.0.0",
  72. "fs-extra": "^10.0.0",
  73. "jsonc-eslint-parser": "^2.0.3",
  74. "mocha": "^9.1.3",
  75. "npm-run-all": "^4.1.5",
  76. "nyc": "^15.1.0",
  77. "opener": "^1.5.2",
  78. "prettier": "^2.4.1",
  79. "rimraf": "^3.0.2",
  80. "rollup": "^2.60.0",
  81. "rollup-plugin-node-resolve": "^5.2.0",
  82. "rollup-plugin-sourcemaps": "^0.6.3",
  83. "ts-node": "^10.4.0",
  84. "typescript": "~4.4.4",
  85. "wait-on": "^6.0.0",
  86. "warun": "^1.0.0"
  87. },
  88. "engines": {
  89. "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
  90. },
  91. "files": [
  92. "index.*"
  93. ],
  94. "funding": "https://github.com/sponsors/mysticatea",
  95. "homepage": "https://github.com/vuejs/vue-eslint-parser#readme",
  96. "keywords": [],
  97. "license": "MIT",
  98. "main": "index.js",
  99. "name": "vue-eslint-parser",
  100. "peerDependencies": {
  101. "eslint": ">=6.0.0"
  102. },
  103. "repository": {
  104. "type": "git",
  105. "url": "git+https://github.com/vuejs/vue-eslint-parser.git"
  106. },
  107. "scripts": {
  108. "build": "tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts",
  109. "clean": "rimraf .nyc_output .temp coverage index.*",
  110. "codecov": "codecov",
  111. "coverage": "opener ./coverage/lcov-report/index.html",
  112. "lint": "eslint src test package.json --ext .js,.ts",
  113. "postversion": "git push && git push --tags",
  114. "prebuild": "npm run -s clean",
  115. "pretest": "run-s build lint",
  116. "preupdate-fixtures": "npm run -s build",
  117. "preversion": "npm test",
  118. "prewatch": "npm run -s clean",
  119. "setup": "git submodule update --init && cd test/fixtures/eslint && npm install",
  120. "test": "npm run -s test:mocha",
  121. "test:debug": "mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000",
  122. "test:mocha": "nyc mocha \"test/*.js\" --reporter dot --timeout 60000",
  123. "update-fixtures": "node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js",
  124. "version": "npm run -s build",
  125. "watch": "run-p watch:*",
  126. "watch:coverage-report": "wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html",
  127. "watch:rollup": "wait-on .temp/index.js && rollup -c -o index.js --watch",
  128. "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",
  129. "watch:tsc": "tsc --module es2015 --watch",
  130. "watch:update-ast": "wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js"
  131. },
  132. "version": "8.3.0"
  133. }