UNPKG

redux-form-submit

Version:

Adds a submit action creator to redux-form

75 lines (74 loc) 2.31 kB
{ "name": "redux-form-submit", "version": "0.1.3", "description": "Adds a submit action creator to redux-form", "main": "dist/index.js", "files": [ "bin/", "dist/" ], "scripts": { "clean": "rimraf dist", "lint": "eslint src test", "check": "npm run lint -s && dependency-check package.json --entry src", "watch": "watch 'npm run build' src test", "test": "NODE_ENV=test babel-node test/index.js | tspec", "prebuild": "npm run check -s && npm run clean -s", "build": "babel --optional runtime src -d dist", "postbuild": "npm run test -s", "coverage": "nyc --reporter=lcov --reporter=text npm run test", "coveralls": "npm run coverage -s && coveralls < coverage/lcov.info", "postcoveralls": "rimraf ./coverage", "prepublish": "npm run build -s", "deploy": "git pull --rebase origin master && git push origin master", "patch": "npm version patch && npm publish", "minor": "npm version minor && npm publish", "major": "npm version major && npm publish", "postpublish": "git push origin master --follow-tags", "toc": "doctoc --github --title \"# Changelog\" CHANGELOG.md" }, "repository": { "type": "git", "url": "git+https://github.com/diegohaz/redux-form-submit.git" }, "keywords": [ "react", "redux", "redux-form", "action", "submit" ], "author": "Diego Haz <hazdiego@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/diegohaz/redux-form-submit/issues" }, "homepage": "https://github.com/diegohaz/redux-form-submit#readme", "peerDependencies": { "redux-form": "^6.0.0" }, "devDependencies": { "babel-cli": "^6.16.0", "babel-core": "^6.17.0", "babel-eslint": "^7.0.0", "babel-preset-es2015": "^6.16.0", "babel-preset-stage-0": "^6.16.0", "coveralls": "^2.11.4", "dependency-check": "^2.5.1", "doctoc": "^1.2.0", "eslint": "^3.7.1", "eslint-config-standard": "^6.2.0", "eslint-plugin-promise": "^2.0.1", "eslint-plugin-standard": "^2.0.1", "nyc": "^8.3.0", "react": "^15.3.2", "react-redux": "^4.4.5", "redux": "^3.6.0", "redux-form": "^6.0.5", "redux-thunk": "^2.1.0", "rimraf": "^2.4.2", "tap-spec": "^4.1.1", "tape": "^4.2.2", "watch": "^1.0.1" } }