2015-08-11 16:34:14 +01:00
|
|
|
{
|
2018-04-23 15:18:49 +02:00
|
|
|
"name": "easymde",
|
2018-07-06 16:03:52 +02:00
|
|
|
"version": "3.0.0",
|
2018-04-23 15:18:49 +02:00
|
|
|
"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"
|
|
|
|
],
|
2018-05-17 22:13:27 +02:00
|
|
|
"main": "./src/js/easymde.js",
|
2017-12-05 11:51:36 +01:00
|
|
|
"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-06-29 10:41:24 +02:00
|
|
|
"codemirror": "^5.39.0",
|
2018-03-31 19:29:14 +02:00
|
|
|
"codemirror-spell-checker": "1.1.2",
|
2018-07-06 16:03:52 +02:00
|
|
|
"highlight.js": "^9.12.0",
|
2018-06-29 10:41:24 +02:00
|
|
|
"marked": "^0.4.0"
|
2017-12-05 11:51:36 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-07-06 16:03:52 +02:00
|
|
|
"@types/browserify": "^12.0.33",
|
|
|
|
"@types/codemirror": "0.0.58",
|
|
|
|
"@types/gulp": "^4.0.5",
|
|
|
|
"@types/gulp-concat": "0.0.32",
|
|
|
|
"@types/gulp-rename": "0.0.33",
|
|
|
|
"@types/gulp-uglify": "^3.0.4",
|
|
|
|
"@types/highlight.js": "^9.12.2",
|
|
|
|
"@types/marked": "^0.4.0",
|
|
|
|
"@types/vinyl-buffer": "^1.0.0",
|
|
|
|
"@types/vinyl-source-stream": "0.0.30",
|
2018-05-13 01:00:07 +02:00
|
|
|
"browserify": "^16.2.2",
|
|
|
|
"gulp": "^4.0.0",
|
|
|
|
"gulp-clean-css": "^3.9.4",
|
2017-12-05 11:51:36 +01:00
|
|
|
"gulp-concat": "^2.6.1",
|
2018-07-06 16:03:52 +02:00
|
|
|
"gulp-eslint": "^5.0.0",
|
2018-04-23 15:18:49 +02:00
|
|
|
"gulp-header": "^2.0.5",
|
2018-07-06 16:03:52 +02:00
|
|
|
"gulp-rename": "^1.3.0",
|
|
|
|
"gulp-typescript": "^5.0.0-alpha.3",
|
2017-12-05 11:51:36 +01:00
|
|
|
"gulp-uglify": "^3.0.0",
|
2018-07-06 16:03:52 +02:00
|
|
|
"ts-node": "^7.0.0",
|
|
|
|
"tslint": "^5.10.0",
|
|
|
|
"typescript": "^2.9.2",
|
2017-12-05 11:51:36 +01:00
|
|
|
"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"
|
2018-05-13 16:49:19 +02:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"prepublishOnly ": "gulp"
|
2017-12-05 11:51:36 +01:00
|
|
|
}
|
2016-01-22 12:27:37 -06:00
|
|
|
}
|