package.json 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. {
  2. "_args": [
  3. [
  4. "vue-eslint-parser@7.1.1",
  5. "/usr/local/develop/php/www/waibao/project/NN2020060801/addons/admin"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "vue-eslint-parser@7.1.1",
  10. "_id": "vue-eslint-parser@7.1.1",
  11. "_inBundle": false,
  12. "_integrity": "sha1-xDwccV/1B3i5p+mk4WkhGF80JdM=",
  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.1.1",
  22. "name": "vue-eslint-parser",
  23. "escapedName": "vue-eslint-parser",
  24. "rawSpec": "7.1.1",
  25. "saveSpec": null,
  26. "fetchSpec": "7.1.1"
  27. },
  28. "_requiredBy": [
  29. "/eslint-plugin-vue"
  30. ],
  31. "_resolved": "https://registry.npm.taobao.org/vue-eslint-parser/download/vue-eslint-parser-7.1.1.tgz?cache=0&sync_timestamp=1602499032728&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fvue-eslint-parser%2Fdownload%2Fvue-eslint-parser-7.1.1.tgz",
  32. "_spec": "7.1.1",
  33. "_where": "/usr/local/develop/php/www/waibao/project/NN2020060801/addons/admin",
  34. "author": {
  35. "name": "Toru Nagashima"
  36. },
  37. "bugs": {
  38. "url": "https://github.com/mysticatea/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.0.1",
  46. "lodash": "^4.17.15"
  47. },
  48. "description": "The ESLint custom parser for `.vue` files.",
  49. "devDependencies": {
  50. "@mysticatea/eslint-plugin": "^11.0.0",
  51. "@types/debug": "0.0.30",
  52. "@types/estree": "0.0.38",
  53. "@types/lodash": "^4.14.120",
  54. "@types/mocha": "^5.2.4",
  55. "@types/node": "^10.12.21",
  56. "@typescript-eslint/parser": "^2.31.0",
  57. "babel-eslint": "^10.0.1",
  58. "chokidar": "^2.0.4",
  59. "codecov": "^3.1.0",
  60. "cross-spawn": "^6.0.5",
  61. "dts-bundle": "^0.7.3",
  62. "eslint": "^7.0.0",
  63. "fs-extra": "^7.0.1",
  64. "mocha": "^6.1.4",
  65. "npm-run-all": "^4.1.5",
  66. "nyc": "^14.0.0",
  67. "opener": "^1.5.1",
  68. "rimraf": "^2.6.3",
  69. "rollup": "^1.1.2",
  70. "rollup-plugin-node-resolve": "^4.0.0",
  71. "rollup-plugin-sourcemaps": "^0.4.2",
  72. "ts-node": "^8.1.0",
  73. "typescript": "~3.4.4",
  74. "wait-on": "^3.2.0",
  75. "warun": "^1.0.0"
  76. },
  77. "engines": {
  78. "node": ">=8.10"
  79. },
  80. "files": [
  81. "index.*"
  82. ],
  83. "funding": "https://github.com/sponsors/mysticatea",
  84. "homepage": "https://github.com/mysticatea/vue-eslint-parser#readme",
  85. "keywords": [],
  86. "license": "MIT",
  87. "main": "index.js",
  88. "name": "vue-eslint-parser",
  89. "peerDependencies": {
  90. "eslint": ">=5.0.0"
  91. },
  92. "repository": {
  93. "type": "git",
  94. "url": "git+https://github.com/mysticatea/vue-eslint-parser.git"
  95. },
  96. "scripts": {
  97. "build": "tsc --module es2015 && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts",
  98. "clean": "rimraf .nyc_output .temp coverage index.*",
  99. "codecov": "codecov",
  100. "coverage": "opener ./coverage/lcov-report/index.html",
  101. "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)\"",
  102. "postversion": "git push && git push --tags",
  103. "prebuild": "npm run -s clean",
  104. "pretest": "run-s build lint",
  105. "preupdate-fixtures": "npm run -s build",
  106. "preversion": "npm test",
  107. "prewatch": "npm run -s clean",
  108. "setup": "git submodule update --init && cd test/fixtures/eslint && npm install",
  109. "test": "npm run -s test:mocha",
  110. "test:mocha": "nyc mocha \"test/*.js\" --reporter dot --timeout 10000",
  111. "update-fixtures": "node scripts/update-fixtures-ast.js && node scripts/update-fixtures-document-fragment.js",
  112. "version": "npm run -s build",
  113. "watch": "run-p watch:*",
  114. "watch:coverage-report": "wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html",
  115. "watch:rollup": "wait-on .temp/index.js && rollup -c -o index.js --watch",
  116. "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",
  117. "watch:tsc": "tsc --module es2015 --watch",
  118. "watch:update-ast": "wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js"
  119. },
  120. "version": "7.1.1"
  121. }