UNPKG

redux-shelf

Version:

Helper reducers and actions to take away your boilerplate code from both Data and Communication state types

62 lines (61 loc) 2.17 kB
{ "name": "redux-shelf", "version": "0.0.9", "main": "lib/redux-shelf.js", "module": "es/redux-shelf.js", "description": "Helper reducers and actions to take away your boilerplate code from both Data and Communication state types", "scripts": { "format": "prettier --write {src,test}/**/*.js", "precommit": "pretty-quick --staged", "test": "cross-env BABEL_ENV=commonjs jest", "test:coverage": "npm test -- --coverage", "eslint-check": "eslint --print-config .eslintrc | eslint-config-prettier-check", "build:commonjs": "cross-env NODE_ENV=cjs rollup -c -o lib/redux-shelf.js", "build:es": "cross-env BABEL_ENV=es NODE_ENV=es rollup -c -o es/redux-shelf.js", "build:umd": "cross-env BABEL_ENV=es NODE_ENV=development rollup -c -o dist/redux-shelf.js", "build:umd:min": "cross-env BABEL_ENV=es NODE_ENV=production rollup -c -o dist/redux-shelf.min.js", "build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min" }, "repository": { "type": "git", "url": "https://github.com/lemes/redux-shelf.git" }, "authors": [ "Guilherme Popolin (https://github.com/guilhermespopolin)", "Rener Baffa (https://github.com/renerbaffa)", "Vinícius Lemes (https://github.com/lemes)" ], "license": "MIT", "private": false, "devDependencies": { "babel-cli": "^6.26.0", "babel-core": "^6.26.0", "babel-eslint": "^8.0.1", "babel-jest": "^22.1.0", "babel-plugin-external-helpers": "^6.22.0", "babel-plugin-transform-object-rest-spread": "^6.26.0", "babel-preset-env": "^1.6.1", "babel-register": "^6.26.0", "cross-env": "^5.1.3", "eslint": "^4.16.0", "eslint-config-airbnb": "^16.1.0", "eslint-config-prettier": "^2.9.0", "eslint-plugin-import": "^2.8.0", "eslint-plugin-jest": "^21.7.0", "eslint-plugin-jsx-a11y": "^6.0.3", "eslint-plugin-react": "^7.6.1", "husky": "^0.14.3", "jest": "^22.1.4", "prettier": "^1.10.2", "pretty-quick": "^1.2.3", "rollup": "^0.55.1", "rollup-plugin-babel": "^3.0.3", "rollup-plugin-uglify": "^3.0.0" } }