package.json 4.2 KB

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