@beakyn/draft-js-utils
Version:
Draft.js utility belt for handling editor state conversions.
70 lines (69 loc) • 2.1 kB
JSON
{
"name": "@beakyn/draft-js-utils",
"version": "1.3.2",
"description": "Draft.js utility belt for handling editor state conversions.",
"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 && rollup -c -o 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/Beakyn/draftjs-md-converter.git"
},
"keywords": ["Draft.js", "Markdown", "converter", "react", "rich", "text", "editor"],
"author": "Kadi Kraman",
"contributors": [
{
"name": "Augusto Falcão",
"email": "falcaoaugustos@gmail.com",
"url": "https://falcaoaugustos.github.io"
},
{
"name": "Matheus Albuquerque",
"email": "land@ythecombinator.space",
"url": "https://www.ythecombinator.space"
}
],
"bugs": {
"url": "https://github.com/Beakyn/draftjs-md-converter/issues"
},
"homepage": "https://github.com/Beakyn/draftjs-md-converter#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.7.5",
"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",
"rollup": "^1.1.2"
},
"dependencies": {
"@textlint/markdown-to-ast": "^6.0.8"
}
}