2
0
mirror of https://github.com/Ionaru/easy-markdown-editor synced 2025-09-22 23:52:36 -06:00
easy-markdown-editor/package.json

40 lines
1.1 KiB
JSON
Raw Normal View History

2015-08-11 16:34:14 +01:00
{
2018-04-23 15:18:49 +02:00
"name": "easymde",
"version": "1.0.0",
"description": "A simple, beautiful, and embeddable JavaScript Markdown editor that easy to use. Features include autosaving and spell checking.",
2017-12-05 11:51:36 +01:00
"keywords": [
"embeddable",
"markdown",
"editor",
"javascript",
"fontawesome"
],
"main": "./src/js/simplemde.js",
"license": "MIT",
"author": "Jeroen Akkerman",
"bugs": {
2018-04-23 15:18:49 +02:00
"url": "https://github.com/ionaru/easy-markdown-editor/issues"
2017-12-05 11:51:36 +01:00
},
"dependencies": {
2018-04-23 15:18:49 +02:00
"codemirror": "^5.37.0",
"codemirror-spell-checker": "1.1.2",
"marked": "0.3.19"
2017-12-05 11:51:36 +01:00
},
"devDependencies": {
2018-04-23 15:18:49 +02:00
"browserify": "^16.2.0",
2017-12-05 11:51:36 +01:00
"gulp": "^3.9.1",
"gulp-clean-css": "^3.9.0",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^4.0.0",
2018-04-23 15:18:49 +02:00
"gulp-header": "^2.0.5",
2017-12-05 11:51:36 +01:00
"gulp-rename": "^1.2.2",
"gulp-uglify": "^3.0.0",
"vinyl-buffer": "^1.0.0",
2018-04-23 15:18:49 +02:00
"vinyl-source-stream": "^2.0.0"
2017-12-05 11:51:36 +01:00
},
"repository": {
"type": "git",
2018-04-23 15:18:49 +02:00
"url": "https://github.com/ionaru/easy-markdown-editor"
2017-12-05 11:51:36 +01:00
}
2016-01-22 12:27:37 -06:00
}