simplemde-markdown-editor/package.json

47 lines
1.3 KiB
JSON
Raw Normal View History

2015-08-11 17:34:14 +02:00
{
2018-04-23 15:18:49 +02:00
"name": "easymde",
"version": "2.5.1",
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"
],
"main": "src/js/easymde.js",
2019-01-16 14:32:41 +01:00
"types": "types/easymde.d.ts",
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": {
2019-01-17 11:50:33 +01:00
"codemirror": "^5.42.2",
"codemirror-spell-checker": "1.1.2",
2019-01-17 11:50:33 +01:00
"marked": "^0.6.0"
2017-12-05 11:51:36 +01:00
},
"devDependencies": {
2019-01-16 14:32:41 +01:00
"@types/codemirror": "0.0.71",
"browserify": "^16.2.3",
"gulp": "^4.0.0",
2019-01-17 11:50:33 +01:00
"gulp-clean-css": "^4.0.0",
2017-12-05 11:51:36 +01:00
"gulp-concat": "^2.6.1",
"gulp-eslint": "^5.0.0",
2019-01-17 11:50:33 +01:00
"gulp-header": "^2.0.7",
"gulp-rename": "^1.4.0",
"gulp-uglify": "^3.0.1",
2019-01-16 14:32:41 +01:00
"typescript": "^3.2.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": {
2019-01-16 14:32:41 +01:00
"prepare": "gulp",
"test:types": "tsc --project types/tsconfig.json"
2017-12-05 11:51:36 +01:00
}
2016-01-22 19:27:37 +01:00
}