package.json 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. {
  2. "_from": "vue-eslint-parser@^7.0.0",
  3. "_id": "vue-eslint-parser@7.11.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-qh3VhDLeh773wjgNTl7ss0VejY9bMMa0GoDG2fQVyDzRFdiU3L7fw74tWZDHNQXdZqxO3EveQroa9ct39D2nqg==",
  6. "_location": "/vue-eslint-parser",
  7. "_phantomChildren": {
  8. "esrecurse": "4.3.0",
  9. "estraverse": "4.3.0"
  10. },
  11. "_requested": {
  12. "type": "range",
  13. "registry": true,
  14. "raw": "vue-eslint-parser@^7.0.0",
  15. "name": "vue-eslint-parser",
  16. "escapedName": "vue-eslint-parser",
  17. "rawSpec": "^7.0.0",
  18. "saveSpec": null,
  19. "fetchSpec": "^7.0.0"
  20. },
  21. "_requiredBy": [
  22. "/eslint-plugin-vue"
  23. ],
  24. "_resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.11.0.tgz",
  25. "_shasum": "214b5dea961007fcffb2ee65b8912307628d0daf",
  26. "_spec": "vue-eslint-parser@^7.0.0",
  27. "_where": "E:\\workspace\\cfd-front-admin\\node_modules\\eslint-plugin-vue",
  28. "author": {
  29. "name": "Toru Nagashima"
  30. },
  31. "bugs": {
  32. "url": "https://github.com/vuejs/vue-eslint-parser/issues"
  33. },
  34. "bundleDependencies": false,
  35. "dependencies": {
  36. "debug": "^4.1.1",
  37. "eslint-scope": "^5.1.1",
  38. "eslint-visitor-keys": "^1.1.0",
  39. "espree": "^6.2.1",
  40. "esquery": "^1.4.0",
  41. "lodash": "^4.17.21",
  42. "semver": "^6.3.0"
  43. },
  44. "deprecated": false,
  45. "description": "The ESLint custom parser for `.vue` files.",
  46. "devDependencies": {
  47. "@babel/core": "^7.15.0",
  48. "@babel/eslint-parser": "^7.15.0",
  49. "@babel/plugin-syntax-decorators": "^7.14.5",
  50. "@babel/plugin-syntax-pipeline-operator": "^7.15.0",
  51. "@babel/plugin-syntax-typescript": "^7.14.5",
  52. "@mysticatea/eslint-plugin": "^13.0.0",
  53. "@types/debug": "0.0.30",
  54. "@types/eslint": "^7.2.6",
  55. "@types/estree": "0.0.45",
  56. "@types/lodash": "^4.14.120",
  57. "@types/mocha": "^5.2.4",
  58. "@types/node": "^10.12.21",
  59. "@types/semver": "^7.3.6",
  60. "@typescript-eslint/eslint-plugin": "^4.9.1",
  61. "@typescript-eslint/parser": "^4.14.0",
  62. "babel-eslint": "^10.0.1",
  63. "chokidar": "^2.0.4",
  64. "codecov": "^3.1.0",
  65. "cross-spawn": "^6.0.5",
  66. "dts-bundle": "^0.7.3",
  67. "eslint": "^7.0.0",
  68. "eslint-plugin-jsonc": "^1.4.0",
  69. "eslint-plugin-node-dependencies": "^0.5.0",
  70. "fs-extra": "^7.0.1",
  71. "jsonc-eslint-parser": "^0.6.0",
  72. "mocha": "^6.1.4",
  73. "npm-run-all": "^4.1.5",
  74. "nyc": "^14.0.0",
  75. "opener": "^1.5.1",
  76. "prettier": "^2.3.1",
  77. "rimraf": "^2.6.3",
  78. "rollup": "^1.1.2",
  79. "rollup-plugin-node-resolve": "^4.0.0",
  80. "rollup-plugin-sourcemaps": "^0.4.2",
  81. "ts-node": "^8.1.0",
  82. "typescript": "~4.0.5",
  83. "wait-on": "^3.2.0",
  84. "warun": "^1.0.0"
  85. },
  86. "engines": {
  87. "node": ">=8.10"
  88. },
  89. "files": [
  90. "index.*"
  91. ],
  92. "funding": "https://github.com/sponsors/mysticatea",
  93. "homepage": "https://github.com/vuejs/vue-eslint-parser#readme",
  94. "keywords": [],
  95. "license": "MIT",
  96. "main": "index.js",
  97. "name": "vue-eslint-parser",
  98. "peerDependencies": {
  99. "eslint": ">=5.0.0"
  100. },
  101. "repository": {
  102. "type": "git",
  103. "url": "git+https://github.com/vuejs/vue-eslint-parser.git"
  104. },
  105. "scripts": {
  106. "build": "tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts",
  107. "clean": "rimraf .nyc_output .temp coverage index.*",
  108. "codecov": "codecov",
  109. "coverage": "opener ./coverage/lcov-report/index.html",
  110. "lint": "eslint src test package.json --ext .js,.ts",
  111. "postversion": "git push && git push --tags",
  112. "prebuild": "npm run -s clean",
  113. "pretest": "run-s build lint",
  114. "preupdate-fixtures": "npm run -s build",
  115. "preversion": "npm test",
  116. "prewatch": "npm run -s clean",
  117. "setup": "git submodule update --init && cd test/fixtures/eslint && npm install",
  118. "test": "npm run -s test:mocha",
  119. "test:debug": "mocha --require ts-node/register/transpile-only \"test/*.js\" --reporter dot --timeout 60000",
  120. "test:mocha": "nyc mocha \"test/*.js\" --reporter dot --timeout 60000",
  121. "update-fixtures": "node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js",
  122. "version": "npm run -s build",
  123. "watch": "run-p watch:*",
  124. "watch:coverage-report": "wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html",
  125. "watch:rollup": "wait-on .temp/index.js && rollup -c -o index.js --watch",
  126. "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",
  127. "watch:tsc": "tsc --module es2015 --watch",
  128. "watch:update-ast": "wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js"
  129. },
  130. "version": "7.11.0"
  131. }