final-form-calculate
Version:
Decorator for calculating field values based on other field values in 🏁 Final Form
105 lines (104 loc) • 3.18 kB
JSON
{
"name": "final-form-calculate",
"version": "1.3.1",
"description": "Decorator for calculating field values based on other field values in 🏁 Final Form",
"main": "dist/final-form-calculate.cjs.js",
"jsnext:main": "dist/final-form-calculate.es.js",
"module": "dist/final-form-calculate.es.js",
"files": [
"dist"
],
"typings": "dist/index.d.ts",
"scripts": {
"start": "nps",
"test": "nps test",
"precommit": "lint-staged && npm start validate"
},
"author": "Erik Rasmussen <rasmussenerik@gmail.com> (http://github.com/erikras)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/final-form/final-form-calculate.git"
},
"bugs": {
"url": "https://github.com/final-form/final-form-calculate/issues"
},
"homepage": "https://github.com/final-form/final-form-calculate#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.2.3",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-flow": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"bundlesize": "^0.17.1",
"doctoc": "^1.4.0",
"eslint": "^5.13.0",
"eslint-config-react-app": "^3.0.6",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^3.2.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"final-form": "^4.11.1",
"flow": "^0.2.3",
"flow-bin": "^0.92.1",
"glow": "^1.2.2",
"husky": "^1.3.1",
"jest": "^24.1.0",
"lint-staged": "^8.1.3",
"nps": "^5.9.3",
"nps-utils": "^1.7.0",
"prettier": "^1.16.4",
"prettier-eslint-cli": "^4.7.1",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-uglify": "^6.0.2",
"typescript": "^3.3.1"
},
"peerDependencies": {
"final-form": ">=1.3.0"
},
"lint-staged": {
"*.{js,json,md,css}": [
"prettier --write",
"git add"
]
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
".*\\.ts"
]
},
"bundlesize": [
{
"path": "dist/final-form-calculate.umd.min.js",
"threshold": "800B"
},
{
"path": "dist/final-form-calculate.es.js",
"threshold": "1.2kB"
},
{
"path": "dist/final-form-calculate.cjs.js",
"threshold": "1.2kB"
}
]
}