package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "@vue/component-compiler-utils",
  3. "version": "2.6.0",
  4. "description": "Lower level utilities for compiling Vue single file components",
  5. "main": "dist/index.js",
  6. "typings": "dist/index.d.ts",
  7. "scripts": {
  8. "lint": "prettier --write \"{lib,test}/**/*.ts\"",
  9. "test": "prettier --list-different \"{lib,test}/**/*.ts\" && jest --coverage",
  10. "build": "rm -rf dist && tsc",
  11. "prepublishOnly": "yarn build && conventional-changelog -p angular -r 2 -i CHANGELOG.md -s"
  12. },
  13. "gitHooks": {
  14. "pre-commit": "lint-staged"
  15. },
  16. "lint-staged": {
  17. "*.{ts,js}": [
  18. "prettier --write",
  19. "git add"
  20. ]
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "git+https://github.com/vuejs/component-compiler-utils.git"
  25. },
  26. "keywords": [
  27. "vue",
  28. "sfc",
  29. "component",
  30. "compiler"
  31. ],
  32. "author": "Evan You",
  33. "license": "MIT",
  34. "bugs": {
  35. "url": "https://github.com/vuejs/component-compiler-utils/issues"
  36. },
  37. "homepage": "https://github.com/vuejs/component-compiler-utils#readme",
  38. "devDependencies": {
  39. "@types/jest": "^22.2.3",
  40. "@types/node": "^10.12.20",
  41. "conventional-changelog-cli": "^2.0.11",
  42. "jest": "^24.0.0",
  43. "less": "^3.9.0",
  44. "lint-staged": "^8.1.1",
  45. "node-sass": "^4.11.0",
  46. "pug": "^2.0.3",
  47. "stylus": "^0.54.5",
  48. "ts-jest": "^24.0.0",
  49. "typescript": "^3.3.0",
  50. "vue": "^2.6.6",
  51. "vue-template-compiler": "^2.6.6",
  52. "yorkie": "^2.0.0"
  53. },
  54. "dependencies": {
  55. "consolidate": "^0.15.1",
  56. "hash-sum": "^1.0.2",
  57. "lru-cache": "^4.1.2",
  58. "merge-source-map": "^1.1.0",
  59. "postcss": "^7.0.14",
  60. "postcss-selector-parser": "^5.0.0",
  61. "prettier": "1.16.3",
  62. "source-map": "~0.6.1",
  63. "vue-template-es2015-compiler": "^1.9.0"
  64. }
  65. }