package.json 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. {
  2. "name": "vue-quill-editor",
  3. "description": "Quill editor component for Vue",
  4. "version": "3.0.6",
  5. "license": "MIT",
  6. "private": false,
  7. "author": {
  8. "name": "Surmon",
  9. "email": "surmon@foxmail.com",
  10. "url": "https://surmon.me"
  11. },
  12. "bugs": {
  13. "url": "https://github.com/surmon-china/vue-quill-editor/issues"
  14. },
  15. "homepage": "https://github.com/surmon-china/vue-quill-editor#readme",
  16. "main": "dist/vue-quill-editor.js",
  17. "unpkg": "dist/vue-quill-editor.js",
  18. "jsnext:main": "dist/vue-quill-editor.js",
  19. "files": [
  20. "dist",
  21. "src"
  22. ],
  23. "jspm": {
  24. "main": "dist/vue-quill-editor.js",
  25. "registry": "npm",
  26. "format": "esm"
  27. },
  28. "repository": {
  29. "type": "git",
  30. "url": "https://github.com/surmon-china/vue-quill-editor.git"
  31. },
  32. "keywords": [
  33. "vue-quill-editor",
  34. "vue quill",
  35. "vue text editor",
  36. "vue rich text editor",
  37. "vue web editor",
  38. "vue editor"
  39. ],
  40. "scripts": {
  41. "build:spa": "cross-env NODE_ENV=production webpack --config config/build.conf.js",
  42. "build:ssr": "babel src/ssr.js --out-file dist/ssr.js",
  43. "build": "npm run build:spa && npm run build:ssr",
  44. "unit": "cross-env BABEL_ENV=test NODE_ENV=testing karma start test/unit/karma.conf.js --watch",
  45. "test": "cross-env BABEL_ENV=test NODE_ENV=testing karma start test/unit/karma.conf.js --single-run",
  46. "lint": "eslint --ext .js,.vue src test/unit/specs",
  47. "finish": "npm run lint && npm test && npm run build",
  48. "publish": "git push && git push --tags && npm publish"
  49. },
  50. "dependencies": {
  51. "object-assign": "^4.1.1",
  52. "quill": "^1.3.4"
  53. },
  54. "expDependencies": {
  55. "node-sass": "^4.7.2",
  56. "sass-loader": "^6.0.6",
  57. "highlight.js": "^9.12.0",
  58. "quill-image-drop-module": "^1.0.3",
  59. "quill-image-resize-module": "^3.0.0",
  60. "vue-quill-editor": "^3.0.0"
  61. },
  62. "devDependencies": {
  63. "autoprefixer": "^6.7.2",
  64. "babel-cli": "^6.23.0",
  65. "babel-core": "^6.24.1",
  66. "babel-eslint": "^7.1.1",
  67. "babel-helper-vue-jsx-merge-props": "^2.0.2",
  68. "babel-loader": "^6.2.10",
  69. "babel-plugin-istanbul": "^3.1.2",
  70. "babel-plugin-syntax-jsx": "^6.13.0",
  71. "babel-plugin-transform-es2015-destructuring": "^6.23.0",
  72. "babel-plugin-transform-export-extensions": "^6.8.0",
  73. "babel-plugin-transform-object-rest-spread": "^6.23.0",
  74. "babel-plugin-transform-runtime": "^6.23.0",
  75. "babel-preset-es2015": "^6.24.1",
  76. "babel-preset-stage-2": "^6.22.0",
  77. "babel-register": "^6.0.0",
  78. "chai": "^3.5.0",
  79. "chalk": "^1.1.3",
  80. "connect-history-api-fallback": "^1.1.0",
  81. "copy-webpack-plugin": "^4.0.0",
  82. "cross-env": "^5.0.0",
  83. "cross-spawn": "^5.1.0",
  84. "css-loader": "^0.25.0",
  85. "eslint": "^3.14.1",
  86. "eslint-config-standard": "^6.1.0",
  87. "eslint-friendly-formatter": "^2.0.5",
  88. "eslint-loader": "^1.6.1",
  89. "eslint-plugin-html": "^2.0.0",
  90. "eslint-plugin-promise": "^3.4.0",
  91. "eslint-plugin-standard": "^2.0.1",
  92. "eventsource-polyfill": "^0.9.6",
  93. "express": "^4.13.3",
  94. "extract-text-webpack-plugin": "^2.0.0-rc.3",
  95. "file-loader": "^0.10.0",
  96. "friendly-errors-webpack-plugin": "^1.1.3",
  97. "function-bind": "^1.1.0",
  98. "html-loader": "^0.4.4",
  99. "html-webpack-plugin": "^2.28.0",
  100. "http-proxy-middleware": "^0.17.3",
  101. "inject-loader": "^2.0.1",
  102. "json-loader": "^0.5.4",
  103. "jstransformer-markdown-it": "^2.0.0",
  104. "karma": "^1.4.1",
  105. "karma-coverage": "^1.1.1",
  106. "karma-mocha": "^1.3.0",
  107. "karma-phantomjs-launcher": "^1.0.2",
  108. "karma-sinon-chai": "^1.2.4",
  109. "karma-sourcemap-loader": "^0.3.7",
  110. "karma-spec-reporter": "0.0.26",
  111. "karma-webpack": "^2.0.2",
  112. "lolex": "^1.5.2",
  113. "mocha": "^3.2.0",
  114. "opn": "^4.0.2",
  115. "optimize-css-assets-webpack-plugin": "^1.3.0",
  116. "ora": "^0.3.0",
  117. "phantomjs-prebuilt": "^2.1.3",
  118. "raw-loader": "^0.5.1",
  119. "semver": "^5.3.0",
  120. "shelljs": "^0.7.4",
  121. "sinon": "^2.1.0",
  122. "sinon-chai": "^2.8.0",
  123. "uglify-js": "^3.0.15",
  124. "url-loader": "^0.5.7",
  125. "vue": "^2.5.0",
  126. "vue-hot-reload-api": "^1.2.0",
  127. "vue-html-loader": "^1.0.0",
  128. "vue-loader": "^13.3.0",
  129. "vue-template-compiler": "^2.5.2",
  130. "vue-template-es2015-compiler": "^1.6.0",
  131. "webpack": "^2.2.1",
  132. "webpack-bundle-analyzer": "^2.2.1",
  133. "webpack-dev-middleware": "^1.10.0",
  134. "webpack-hot-middleware": "^2.16.1",
  135. "webpack-merge": "^2.6.1"
  136. },
  137. "engines": {
  138. "node": ">= 4.0.0",
  139. "npm": ">= 3.0.0"
  140. }
  141. }