UNPKG

draft-js-checkable-list-item

Version:
104 lines (103 loc) 3.36 kB
{ "name": "draft-js-checkable-list-item", "version": "3.0.4", "description": "Checkable list item for Draft.js", "main": "lib/index.js", "module": "es/index.js", "jsnext:main": "es/index.js", "files": [ "lib", "es" ], "keywords": [ "react", "draft-js", "checkbox", "checkable-list-item" ], "scripts": { "start": "webpack-dev-server --progress", "clean:lib": "if [ -d lib ]; then rm -rf lib; fi", "clean:es": "if [ -d es ]; then rm -rf es; fi", "precompile": "npm run clean:lib && npm run clean:es", "stylus": "stylus src -c -o lib", "compile:commonjs": "NODE_ENV=production BABEL_ENV=commonjs babel -d lib src", "compile:es": "NODE_ENV=production BABEL_ENV=es babel -d es src", "compile": "npm run compile:commonjs && npm run compile:es && npm run stylus", "check": "npm run lint && npm run type", "lint": "eslint src tests", "type": "flow", "jest": "jest", "jest:coverage": "jest --coverage", "test": "npm run check && npm run jest:coverage", "coverage:report": "cat coverage/lcov.info | coveralls", "favicon": "curl https://sugarshin.net/favicon.ico > build/favicon.ico", "clean:build": "if [ -d build ]; then rm -rf build; fi", "prebuild": "npm run clean:build; mkdir -p build && npm run favicon", "build": "NODE_ENV=production webpack", "deploy": "/bin/bash scripts/deploy.sh" }, "repository": { "type": "git", "url": "git+https://github.com/sugarshin/draft-js-checkable-list-item.git" }, "author": "sugarshin", "license": "MIT", "bugs": { "url": "https://github.com/sugarshin/draft-js-checkable-list-item/issues" }, "homepage": "https://github.com/sugarshin/draft-js-checkable-list-item#readme", "peerDependencies": { "draft-js": "~0.10.0 || ~0.9.0", "react": "^16.0.0 || ^15.0.0 || ~0.14.0", "react-dom": "^16.0.0 || ^15.0.0 || ~0.14.0" }, "dependencies": { "draft-js-modifiers": "~0.2.2", "immutable": "~3.7.4" }, "devDependencies": { "@babel/cli": "^7.0.0-beta.47", "@babel/core": "^7.0.0-beta.47", "@babel/plugin-transform-flow-strip-types": "^7.0.0-beta.47", "@babel/polyfill": "^7.0.0-beta.47", "@babel/preset-es2015": "^7.0.0-beta.47", "@babel/preset-react": "^7.0.0-beta.47", "@babel/preset-stage-2": "^7.0.0-beta.47", "babel-core": "^7.0.0-0", "babel-eslint": "^8.2.3", "babel-jest": "^22.4.4", "babel-loader": "^8.0.0-beta.3", "coveralls": "^3.0.1", "css-loader": "^0.28.11", "draft-js": "~0.10.5", "enzyme": "^3.3.0", "enzyme-adapter-react-16": "^1.1.1", "eslint": "^4.19.1", "eslint-plugin-babel": "^5.1.0", "eslint-plugin-flowtype": "^2.47.1", "eslint-plugin-react": "^7.8.2", "flow-bin": "^0.70.0", "html-webpack-plugin": "^2.30.1", "jest": "^22.4.4", "raf": "^3.4.0", "react": "^16.3.2", "react-dom": "^16.3.2", "react-ghfork": "^0.5.1", "react-hot-loader": "^4.2.0", "react-test-renderer": "^16.3.2", "regenerator-runtime": "^0.11.1", "style-loader": "^0.21.0", "stylus": "^0.54.5", "stylus-loader": "^3.0.2", "webpack": "^3.11.0", "webpack-dev-server": "^2.11.1" }, "jest": { "testRegex": "/tests/.*-test\\.js$", "setupFiles": [ "raf/polyfill", "<rootDir>/tests/config/enzyme.js" ] } }