package.json 4.4 KB

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