UNPKG

textarea-editor

Version:
63 lines (62 loc) 1.64 kB
{ "name": "textarea-editor", "version": "2.1.1", "description": "Simple markdown editor for textareas", "main": "build/editor.js", "scripts": { "build": "babel -d build src", "start": "parcel example/index.html -p 3000 -d example/build --open --no-cache", "test": "jest", "test-cov": "jest --coverage --runInBand --forceExit", "docs": "documentation readme ./src/*.js --section=API", "prepublish": "yarn run build", "lint": "eslint src test" }, "repository": { "type": "git", "url": "git+https://github.com/eivindfjeldstad/textarea-editor.git" }, "keywords": [ "textarea", "markdown", "editor" ], "author": "Eivind Fjeldstad <eivind.fjeldstad@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/eivindfjeldstad/textarea-editor/issues" }, "homepage": "https://github.com/eivindfjeldstad/textarea-editor#readme", "devDependencies": { "babel-cli": "^6.26.0", "babel-core": "^6.26.0", "babel-jest": "^22.4.3", "babel-preset-env": "^1.6.1", "documentation": "^6.2.0", "jest": "^22.4.3", "parcel-bundler": "^1.7.1", "eslint": "^4.19.1", "eslint-config-standard": "^11.0.0", "eslint-plugin-import": "^2.11.0", "eslint-plugin-node": "^6.0.1", "eslint-plugin-promise": "^3.7.0", "eslint-plugin-standard": "^3.0.1" }, "dependencies": { "escape-string-regexp": "^1.0.5" }, "jest": { "testMatch": [ "**/test/**/*.js" ], "coverageReporters": [ "text-summary", "lcov" ], "bail": true, "testEnvironment": "jsdom" }, "files": [ "build" ] }