2015-08-11 16:34:14 +01:00
|
|
|
{
|
2018-04-23 15:18:49 +02:00
|
|
|
"name": "easymde",
|
2020-01-13 22:33:22 +01:00
|
|
|
"version": "2.9.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.",
|
2019-02-28 14:58:54 +01:00
|
|
|
"files": [
|
|
|
|
"dist/**/*",
|
|
|
|
"src/**/*",
|
|
|
|
"types/easymde.d.ts"
|
|
|
|
],
|
2017-12-05 11:51:36 +01:00
|
|
|
"keywords": [
|
|
|
|
"embeddable",
|
|
|
|
"markdown",
|
|
|
|
"editor",
|
|
|
|
"javascript",
|
|
|
|
"fontawesome"
|
|
|
|
],
|
2019-01-17 09:46:57 +01:00
|
|
|
"main": "src/js/easymde.js",
|
2019-01-16 21:32:41 +08:00
|
|
|
"types": "types/easymde.d.ts",
|
2017-12-05 11:51:36 +01:00
|
|
|
"license": "MIT",
|
|
|
|
"author": "Jeroen Akkerman",
|
|
|
|
"dependencies": {
|
2020-01-13 22:26:35 +01:00
|
|
|
"codemirror": "^5.50.2",
|
2018-03-31 19:29:14 +02:00
|
|
|
"codemirror-spell-checker": "1.1.2",
|
2020-01-13 22:26:35 +01:00
|
|
|
"marked": "^0.8.0"
|
2017-12-05 11:51:36 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-01-13 22:26:35 +01:00
|
|
|
"@types/codemirror": "0.0.82",
|
|
|
|
"@types/marked": "^0.7.2",
|
2019-08-20 01:05:09 +02:00
|
|
|
"browserify": "^16.5.0",
|
2019-06-02 21:23:18 +02:00
|
|
|
"gulp": "^4.0.2",
|
|
|
|
"gulp-clean-css": "^4.2.0",
|
2017-12-05 11:51:36 +01:00
|
|
|
"gulp-concat": "^2.6.1",
|
2019-07-11 10:18:48 +02:00
|
|
|
"gulp-eslint": "^6.0.0",
|
2019-08-20 01:05:09 +02:00
|
|
|
"gulp-header": "^2.0.9",
|
2020-01-13 22:26:35 +01:00
|
|
|
"gulp-rename": "^2.0.0",
|
2019-06-17 14:54:29 +02:00
|
|
|
"gulp-terser": "^1.2.0",
|
2019-06-02 21:23:18 +02:00
|
|
|
"gulp-uglify": "^3.0.2",
|
2020-01-13 22:26:35 +01:00
|
|
|
"typescript": "^3.7.4",
|
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
|
|
|
},
|
2019-04-15 12:55:51 +02:00
|
|
|
"repository": "github:Ionaru/easy-markdown-editor",
|
2018-05-13 16:49:19 +02:00
|
|
|
"scripts": {
|
2019-01-16 21:32:41 +08:00
|
|
|
"prepare": "gulp",
|
2020-01-13 22:26:35 +01:00
|
|
|
"test": "npm run lint && npm run test:types",
|
|
|
|
"lint": "gulp lint",
|
2019-01-16 21:32:41 +08:00
|
|
|
"test:types": "tsc --project types/tsconfig.json"
|
2017-12-05 11:51:36 +01:00
|
|
|
}
|
2016-01-22 12:27:37 -06:00
|
|
|
}
|