package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "vue-html5-editor",
  3. "version": "1.1.1",
  4. "description": "A WYSIWYG text editor base on html5 and vue",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/PeakTai/vue-html5-editor"
  8. },
  9. "main": "dist/vue-html5-editor.js",
  10. "scripts": {
  11. "build": "npm run lint && rollup -c rollup.config.js",
  12. "test": "echo \"Error: no test specified\" && exit 1",
  13. "lint": "eslint --fix -f codeframe src/*"
  14. },
  15. "keywords": [
  16. "vue",
  17. "WYSIWYG",
  18. "richtext",
  19. "html5",
  20. "editor"
  21. ],
  22. "author": "peak",
  23. "license": "Apache-2.0",
  24. "devDependencies": {
  25. "eslint": "^3.9.1",
  26. "eslint-config-airbnb": "^12.0.0",
  27. "eslint-friendly-formatter": "^2.0.6",
  28. "eslint-loader": "^1.6.0",
  29. "eslint-plugin-import": "^1.16.0",
  30. "eslint-plugin-jsx-a11y": "^2.2.3",
  31. "eslint-plugin-react": "^6.9.0",
  32. "lrz": "^4.9.40",
  33. "postcss-clean": "^1.0.2",
  34. "postcss-cssnext": "^2.9.0",
  35. "postcss-import": "^9.1.0",
  36. "rollup": "^0.37.0",
  37. "rollup-plugin-babel": "^2.7.1",
  38. "rollup-plugin-buble": "^0.15.0",
  39. "rollup-plugin-commonjs": "^6.0.1",
  40. "rollup-plugin-css-only": "^0.2.0",
  41. "rollup-plugin-flow-no-whitespace": "^1.0.0",
  42. "rollup-plugin-html": "^0.2.1",
  43. "rollup-plugin-license": "^0.3.0",
  44. "rollup-plugin-node-resolve": "^2.0.0",
  45. "rollup-plugin-postcss": "^0.2.0",
  46. "rollup-plugin-progress": "^0.2.1",
  47. "rollup-plugin-replace": "^1.1.1"
  48. }
  49. }