package.json 4.7 KB

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