This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
draft-js-commit-log-plugin/package.json
2020-04-19 21:00:44 -04:00

39 lines
1 KiB
JSON

{
"name": "draft-js-commit-log-plugin",
"description": "A commitlog-like plugin that simplifies tracking changes in DraftJS documents",
"version": "0.0.0",
"main": "./src/index.js",
"repository": "git@github.com:mcataford/draft-js-commit-log-plugin.git",
"author": "Marc Cataford <c.marcandre@gmail.com>",
"license": "MIT",
"files": [
"src/*.js",
"!*.test.js"
],
"scripts": {
"lint": "eslint ./src",
"test": "jest ./src"
},
"devDependencies": {
"@tophat/eslint-config": "^0.6.1",
"draft-js": "^0.11.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^25.3.0",
"prettier": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"peerDependencies": {
"draft-js": "^0.11.5",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"dependencies": {
"immutable": "^4.0.0-rc.12",
"uuid": "^7.0.3"
}
}