zenform
Version:
react form management made easy
126 lines (125 loc) • 3.68 kB
JSON
{
"name": "zenform",
"version": "0.0.0-rc.3",
"description": "react form management made easy",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"jsnext:main": "dist/es/index.js",
"unpkg": "dist/umd/index.min.js",
"files": [
"dist"
],
"keywords": [
"form",
"react",
"react form"
],
"author": "Shriyans Bhatnagar <shriyansbhatnagar@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/shrynx/zenform.git"
},
"bugs": {
"url": "https://github.com/shrynx/zenform/issues"
},
"homepage": "https://github.com/shrynx/zenform#readme",
"scripts": {
"flow": "flow",
"flow:coverage": "flow-coverage-report -i 'src/**/*.js' -t html -t json -t text --threshold 80",
"lint": "eslint '+(src|tests)/**/*.js'",
"format": "prettier-eslint --write '+(src|tests)/**/*.js' '*.md'",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "npm run test && cat ./coverage/lcov.info | coveralls",
"commit": "git-cz",
"commit:retry": "git-cz --retry",
"commitmsg": "commitlint -e",
"clean": "rimraf dist",
"build": "npm run clean && rollup -c",
"prepublishOnly": "npm run test && npm run build"
},
"sideEffects": false,
"lint-staged": {
"+(src|tests)/**/*.js": [
"eslint",
"prettier-eslint --write",
"git add"
],
"*.md": [
"markdown-toc -i",
"prettier-eslint --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run test && lint-staged"
}
},
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@commitlint/config-conventional": "^6.1.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.3",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-ramda": "^1.5.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"commitizen": "^2.9.6",
"coveralls": "^3.0.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "^0.69.0",
"flow-coverage-report": "^0.5.0",
"husky": "^0.15.0-rc.8",
"jest": "^22.4.3",
"lint-staged": "^7.0.3",
"markdown-toc": "^1.2.0",
"prettier": "^1.11.1",
"prettier-eslint-cli": "^4.7.1",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-testing-library": "^1.9.5",
"rimraf": "^2.6.2",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-cpy": "^1.0.0",
"rollup-plugin-filesize": "^1.5.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"rollup-plugin-visualizer": "^0.5.0"
},
"peerDependencies": {
"react": "^14.0.0 || ^15.0.0 || ^16.0.0"
},
"dependencies": {
"create-react-context": "^0.2.1",
"prop-types": "^15.6.1",
"ramda": "^0.25.0",
"warning": "^3.0.0"
}
}