This commit is contained in:
Wes Cossick 2015-11-03 11:01:11 -06:00
parent 788f371253
commit cc7f1b456a

View file

@ -1,68 +1,68 @@
{ {
"name": "simplemde", "name": "simplemde",
"version": "1.8.0", "version": "1.8.1",
"description": "A simple, beautiful, and embeddable JavaScript Markdown editor. Features autosaving and spell checking.", "description": "A simple, beautiful, and embeddable JavaScript Markdown editor. Features autosaving and spell checking.",
"keywords": [ "keywords": [
"embeddable", "embeddable",
"markdown", "markdown",
"editor", "editor",
"javascript", "javascript",
"wysiwyg" "wysiwyg"
], ],
"homepage": "https://github.com/NextStepWebs/simplemde-markdown-editor", "homepage": "https://github.com/NextStepWebs/simplemde-markdown-editor",
"main": "./src/js/simplemde.js", "main": "./src/js/simplemde.js",
"license": "MIT", "license": "MIT",
"company": "Next Step Webs, Inc.", "company": "Next Step Webs, Inc.",
"author": { "author": {
"name": "Wes Cossick", "name": "Wes Cossick",
"url": "http://www.WesCossick.com" "url": "http://www.WesCossick.com"
}, },
"bugs": { "bugs": {
"url": "https://github.com/NextStepWebs/simplemde-markdown-editor/issues" "url": "https://github.com/NextStepWebs/simplemde-markdown-editor/issues"
}, },
"dependencies": { "dependencies": {
"codemirror": "codemirror/CodeMirror", "codemirror": "codemirror/CodeMirror",
"codemirror-spell-checker": "nextstepwebs/codemirror-spell-checker", "codemirror-spell-checker": "nextstepwebs/codemirror-spell-checker",
"marked": "chjj/marked" "marked": "chjj/marked"
}, },
"devDependencies": { "devDependencies": {
"browserify": "^11.2.0", "browserify": "^11.2.0",
"browserify-shim": "^3.8.10", "browserify-shim": "^3.8.10",
"debug": "^2.2.0", "debug": "^2.2.0",
"eslint": "^1.6.0", "eslint": "^1.6.0",
"gulp": "*", "gulp": "*",
"gulp-concat": "*", "gulp-concat": "*",
"gulp-debug": "^2.1.1", "gulp-debug": "^2.1.1",
"gulp-eslint": "^1.0.0", "gulp-eslint": "^1.0.0",
"gulp-header": "*", "gulp-header": "*",
"gulp-jsbeautifier": "*", "gulp-jsbeautifier": "*",
"gulp-minify-css": "^1.2.1", "gulp-minify-css": "^1.2.1",
"gulp-rename": "^1.2.2", "gulp-rename": "^1.2.2",
"gulp-uglify": "*", "gulp-uglify": "*",
"vinyl-source-stream": "^1.1.0" "vinyl-source-stream": "^1.1.0"
}, },
"browserify": { "browserify": {
"transform": [ "transform": [
"browserify-shim" "browserify-shim"
] ]
}, },
"browser":{ "browser": {
"spell-checker":"./node_modules/codemirror-spell-checker/src/js/spell-checker.js", "spell-checker": "./node_modules/codemirror-spell-checker/src/js/spell-checker.js",
"typo":"./node_modules/codemirror-spell-checker/src/js/typo.js" "typo": "./node_modules/codemirror-spell-checker/src/js/typo.js"
}, },
"browserify-shim": { "browserify-shim": {
"spell-checker": { "spell-checker": {
"depends": [ "depends": [
"typo:Typo", "typo:Typo",
"codemirror:CodeMirror" "codemirror:CodeMirror"
] ]
}, },
"typo": { "typo": {
"exports": "Typo" "exports": "Typo"
} }
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/NextStepWebs/simplemde-markdown-editor" "url": "https://github.com/NextStepWebs/simplemde-markdown-editor"
} }
} }