package.json 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "name": "vue-eslint-parser",
  3. "version": "5.0.0",
  4. "description": "The ESLint custom parser for `.vue` files.",
  5. "engines": {
  6. "node": ">=6.5"
  7. },
  8. "main": "index.js",
  9. "files": [
  10. "index.*"
  11. ],
  12. "peerDependencies": {
  13. "eslint": "^5.0.0"
  14. },
  15. "dependencies": {
  16. "debug": "^4.1.0",
  17. "eslint-scope": "^4.0.0",
  18. "eslint-visitor-keys": "^1.0.0",
  19. "espree": "^4.1.0",
  20. "esquery": "^1.0.1",
  21. "lodash": "^4.17.11"
  22. },
  23. "devDependencies": {
  24. "@mysticatea/eslint-plugin": "^7.0.0",
  25. "@types/debug": "0.0.30",
  26. "@types/estree": "0.0.38",
  27. "@types/lodash": "^4.14.118",
  28. "@types/mocha": "^5.2.4",
  29. "@types/node": "^10.12.9",
  30. "acorn": "^6.0.4",
  31. "acorn-jsx": "^5.0.0",
  32. "babel-eslint": "^10.0.1",
  33. "chokidar": "^2.0.4",
  34. "codecov": "^3.1.0",
  35. "cross-spawn": "^6.0.5",
  36. "dts-bundle": "^0.7.3",
  37. "eslint": "^5.9.0",
  38. "fs-extra": "^7.0.1",
  39. "mocha": "^5.2.0",
  40. "npm-run-all": "^4.1.3",
  41. "nyc": "^13.1.0",
  42. "opener": "^1.5.1",
  43. "rimraf": "^2.6.2",
  44. "rollup": "^0.67.1",
  45. "rollup-plugin-node-resolve": "^3.4.0",
  46. "rollup-plugin-sourcemaps": "^0.4.2",
  47. "rollup-watch": "^4.3.1",
  48. "typescript": "~3.1.6",
  49. "typescript-eslint-parser": "^21.0.1",
  50. "wait-on": "^3.2.0",
  51. "warun": "^1.0.0"
  52. },
  53. "scripts": {
  54. "_mocha": "_mocha \"test/*.js\" --reporter dot --timeout 10000",
  55. "prebuild": "npm run -s clean",
  56. "build": "tsc && rollup -c -o index.js && dts-bundle --name vue-eslint-parser --main .temp/index.d.ts --out ../index.d.ts",
  57. "clean": "rimraf .nyc_output .temp coverage index.*",
  58. "codecov": "nyc report --reporter lcovonly && codecov",
  59. "coverage": "nyc report --reporter lcov && opener ./coverage/lcov-report/index.html",
  60. "lint": "eslint src test --ext .js,.ts",
  61. "setup": "git submodule update --init && cd test/fixtures/eslint && npm install",
  62. "pretest": "run-s build lint",
  63. "test": "nyc npm run _mocha",
  64. "preupdate-fixtures": "npm run -s build",
  65. "update-fixtures": "node scripts/update-fixtures-ast.js",
  66. "preversion": "npm test",
  67. "version": "npm run -s build",
  68. "postversion": "git push && git push --tags",
  69. "prewatch": "npm run -s clean",
  70. "watch": "run-p watch:*",
  71. "watch:tsc": "tsc --watch",
  72. "watch:rollup": "wait-on .temp/index.js && rollup -c -o index.js --watch",
  73. "watch:test": "wait-on index.js && warun index.js \"test/*.js\" \"test/fixtures/ast/*/*.json\" \"test/fixtures/*\" --debounce 1000 --no-initial -- nyc -r lcov npm run -s _mocha",
  74. "watch:update-ast": "wait-on index.js && warun index.js \"test/fixtures/ast/*/*.vue\" -- node scripts/update-fixtures-ast.js",
  75. "watch:coverage-report": "wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html"
  76. },
  77. "repository": {
  78. "type": "git",
  79. "url": "git+https://github.com/mysticatea/vue-eslint-parser.git"
  80. },
  81. "keywords": [],
  82. "author": "Toru Nagashima",
  83. "license": "MIT",
  84. "bugs": {
  85. "url": "https://github.com/mysticatea/vue-eslint-parser/issues"
  86. },
  87. "homepage": "https://github.com/mysticatea/vue-eslint-parser#readme",
  88. "__npminstall_done": "Thu Dec 24 2020 20:21:01 GMT+0800 (CST)",
  89. "_from": "vue-eslint-parser@5.0.0",
  90. "_resolved": "https://registry.npm.taobao.org/vue-eslint-parser/download/vue-eslint-parser-5.0.0.tgz?cache=0&sync_timestamp=1608031066427&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fvue-eslint-parser%2Fdownload%2Fvue-eslint-parser-5.0.0.tgz"
  91. }