react-simple-wysiwyg
Version:
Simple and lightweight React WYSIWYG editor
62 lines (61 loc) • 1.7 kB
JSON
{
"name": "react-simple-wysiwyg",
"version": "0.0.8",
"description": "Simple and lightweight React WYSIWYG editor",
"main": "lib/index.js",
"umd:main": "lib/umd/index.umd.js",
"module": "lib/es/index.js",
"jsnext:main": "lib/es/index.js",
"unpkg": "lib/umd/index.umd.min.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "rm -rf lib && tsc && tsc -m es2015 --outDir lib/es --declaration false && rollup -c",
"pages": "gh-pages -d examples/github.io",
"lint": "tslint -p tsconfig.json -t verbose",
"postversion": "git push && git push --tags",
"prepack": "npm run build && npm run test",
"test": "npm run lint && npm run spell",
"spell": "yaspeller-ci ."
},
"repository": "megahertz/react-simple-wysiwyg",
"files": [
"lib"
],
"keywords": [
"react",
"wysiwyg",
"editor",
"rich text"
],
"author": "Alexey Prokhorov",
"license": "MIT",
"bugs": "https://github.com/megahertz/react-simple-wysiwyg/issues",
"homepage": "https://github.com/megahertz/react-simple-wysiwyg#readme",
"devDependencies": {
"@types/react": "^16.8.16",
"gh-pages": "^2.0.1",
"husky": "^2.2.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rollup": "^1.11.3",
"rollup-plugin-filesize": "^6.0.1",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-typescript2": "^0.21.0",
"rollup-plugin-uglify": "^6.0.2",
"tslint": "^5.16.0",
"tslint-react": "^4.0.0",
"typescript": "^3.4.5",
"yaspeller-ci": "^1.0.0"
},
"peerDependencies": {
"react": ">=16.8"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"dependencies": {
"tslib": "1.x"
}
}