draftjs-md-converter-support-video
Version:
Converter for converting Draft.js state into Markdown and vice versa
67 lines (66 loc) • 1.83 kB
JSON
{
"name": "draftjs-md-converter-support-video",
"version": "1.0.38",
"description": "Converter for converting Draft.js state into Markdown and vice versa",
"main": "dist/index.js",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "$(npm bin)/eslint src test",
"test": "$(npm bin)/mocha --compilers js:babel-register && npm run lint",
"test-dev": "$(npm bin)/mocha --compilers js:babel-register --watch",
"test-brk": "$(npm bin)/mocha --debug-brk",
"compile": "rm -rf dist && mkdir dist && babel src --out-file dist/index.js",
"prepublish": "npm run compile",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/omryr/draftjs-md-converter.git"
},
"keywords": [
"Draft.js",
"Markdown",
"converter",
"react",
"rich",
"text",
"editor"
],
"author": "Kadi Kraman",
"bugs": {
"url": "https://github.com/omryr/draftjs-md-converter/issues"
},
"homepage": "https://github.com/omryr/draftjs-md-converter#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.7.6",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.18.0",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"dirty-chai": "^1.2.2",
"eslint": "^3.9.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^4.3.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.4",
"mocha": "^2.4.5",
"prettier": "^1.11.1"
},
"dependencies": {
"@textlint/markdown-to-ast": "^6.0.8"
}
}