package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "safe-simplemde",
  3. "version": "0.1.0",
  4. "description": "A simple markdown editor for the Safe network browser",
  5. "keywords": [
  6. "embeddable",
  7. "markdown",
  8. "editor",
  9. "javascript",
  10. "wysiwyg"
  11. ],
  12. "homepage": "https://github.com/wrnice/safe-simplemde",
  13. "main": "./src/js/simplemde.js",
  14. "license": "MIT",
  15. "author": {
  16. "name": "Wrnice",
  17. "url": "https://github.com/wrnice"
  18. },
  19. "bugs": {
  20. "url": "https://github.com/wrnice/safe-simplemde/issues"
  21. },
  22. "dependencies": {
  23. "codemirror": "*",
  24. "codemirror-spell-checker": "*",
  25. "marked": "*"
  26. },
  27. "devDependencies": {
  28. "browserify": "*",
  29. "debug": "*",
  30. "eslint": "*",
  31. "gulp": "^3.9.1",
  32. "gulp-clean-css": "^3.9.0",
  33. "gulp-concat": "^2.6.1",
  34. "gulp-debug": "*",
  35. "gulp-eslint": "*",
  36. "gulp-header": "*",
  37. "gulp-jsbeautifier": "*",
  38. "gulp-rename": "*",
  39. "gulp-uglify": "^3.0.0",
  40. "vinyl-buffer": "*",
  41. "vinyl-source-stream": "*"
  42. },
  43. "repository": {
  44. "type": "git",
  45. "url": "https://github.com/wrnice/safe-simplemde"
  46. }
  47. }