package.json 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "name": "vue-eslint-parser",
  3. "version": "2.0.3",
  4. "description": "The ESLint custom parser for `.vue` files.",
  5. "engines": {
  6. "node": ">=4"
  7. },
  8. "main": "index.js",
  9. "files": [
  10. "index.d.ts",
  11. "index.js",
  12. "index.js.map"
  13. ],
  14. "peerDependencies": {
  15. "eslint": ">=3.9.0"
  16. },
  17. "dependencies": {
  18. "debug": "^3.1.0",
  19. "eslint-scope": "^3.7.1",
  20. "eslint-visitor-keys": "^1.0.0",
  21. "espree": "^3.5.2",
  22. "esquery": "^1.0.0",
  23. "lodash": "^4.17.4"
  24. },
  25. "devDependencies": {
  26. "@types/debug": "0.0.30",
  27. "@types/estree": "0.0.38",
  28. "@types/lodash": "^4.14.91",
  29. "@types/mocha": "^2.2.44",
  30. "@types/node": "^6.0.85",
  31. "babel-eslint": "^8.1.1",
  32. "chokidar": "^1.7.0",
  33. "codecov": "^3.0.0",
  34. "cross-spawn": "^5.1.0",
  35. "dts-bundle": "^0.7.3",
  36. "eslint": "^4.14.0",
  37. "eslint-config-mysticatea": "^12.0.0",
  38. "fs-extra": "^5.0.0",
  39. "mocha": "^4.0.1",
  40. "npm-run-all": "^4.1.2",
  41. "nyc": "^11.4.1",
  42. "opener": "^1.4.3",
  43. "rimraf": "^2.6.2",
  44. "rollup": "^0.53.0",
  45. "rollup-plugin-node-resolve": "^3.0.0",
  46. "rollup-plugin-sourcemaps": "^0.4.2",
  47. "rollup-watch": "^4.3.1",
  48. "typescript": "~2.6.2",
  49. "typescript-eslint-parser": "^11.0.0",
  50. "wait-on": "^2.0.2",
  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 .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 test/tools/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 test/tools/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:20:39 GMT+0800 (CST)",
  89. "_from": "vue-eslint-parser@2.0.3",
  90. "_resolved": "https://registry.npm.taobao.org/vue-eslint-parser/download/vue-eslint-parser-2.0.3.tgz?cache=0&sync_timestamp=1608031066427&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fvue-eslint-parser%2Fdownload%2Fvue-eslint-parser-2.0.3.tgz"
  91. }