UNPKG

react-bfm

Version:

A basic field / form manager for React using hooks

108 lines (107 loc) 3.63 kB
{ "name": "react-bfm", "description": "A basic field / form manager for React using hooks", "version": "2.0.0-beta.18", "keywords": [ "react", "reactjs", "form", "input" ], "license": "MIT", "author": "Sebastiaan Vossebeld <sebastiaan@vijfdertien.it> (https://github.com/vijfdertien)", "homepage": "https://github.com/vijfdertien/react-bfm", "repository": { "type": "git", "url": "git+https://github.com/vijfdertien/react-bfm.git" }, "bugs": { "url": "https://github.com/vijfdertien/react-bfm/issues" }, "main": "lib/index.js", "unpkg": "dist/react-bfm.js", "module": "es/index.js", "files": [ "/dist", "/lib", "/src", "/es", "/types" ], "types": "types/index.d.ts", "scripts": { "build": "yarn build-ts && yarn build-commonjs && yarn build-es && yarn build-umd && yarn build-umd-min", "build-ts": "tsc", "build-commonjs": "BABEL_ENV=commonjs babel build --out-dir lib", "build-es": "babel build --out-dir es", "build-umd": "BABEL_ENV=commonjs NODE_ENV=development webpack", "build-umd-min": "BABEL_ENV=commonjs NODE_ENV=production webpack", "clean": "rimraf lib dist es types", "eslint-check": "eslint . --ext .ts,.js", "eslint-fix": "eslint --fix .", "prepare": " husky install", "prepublishOnly": "yarn clean && yarn build", "prettier-check": "prettier --check .", "prettier-fix": "prettier --write .", "test": "jest", "check": "yarn prettier-check && yarn eslint-check && tsc --noEmit --project tsconfig.check.json", "version": "conventional-changelog --config ./changelog-config.js --infile CHANGELOG.md --same-file && prettier --write CHANGELOG.md && git add CHANGELOG.md" }, "dependencies": { "@babel/runtime": "^7.22.15" }, "peerDependencies": { "react": ">=18.2.0" }, "devDependencies": { "@babel/cli": "^7.22.15", "@babel/core": "^7.22.17", "@babel/eslint-parser": "^7.22.15", "@babel/plugin-proposal-decorators": "^7.22.15", "@babel/plugin-proposal-object-rest-spread": "^7.20.7", "@babel/plugin-transform-react-jsx": "^7.22.15", "@babel/plugin-transform-runtime": "^7.22.15", "@babel/preset-env": "^7.22.15", "@commitlint/cli": "^17.7.1", "@commitlint/config-conventional": "^17.7.0", "@jest/globals": "^29.6.4", "@testing-library/react-hooks": "^8.0.1", "@types/jest": "^29.5.4", "@types/react": "^18.2.21", "@typescript-eslint/eslint-plugin": "^6.6.0", "@typescript-eslint/parser": "^6.6.0", "babel-loader": "^9.1.3", "conventional-changelog-cli": "^2.2.2", "conventional-changelog-conventionalcommits": "^5.0.0", "eslint": "^8.49.0", "eslint-config-prettier": "^9.0.0", "eslint-config-standard": "^17.1.0", "eslint-config-standard-jsx": "^11.0.0", "eslint-plugin-import": "^2.28.1", "eslint-plugin-jest": "^27.2.3", "eslint-plugin-jsx-a11y": "^6.7.1", "eslint-plugin-n": "^16.0.2", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prefer-arrow": "^1.2.3", "eslint-plugin-promise": "^6.1.1", "eslint-plugin-react": "^7.33.2", "eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-redux-reselect": "^1.1.1", "eslint-plugin-unicorn": "^48.0.1", "husky": "^8.0.3", "jest": "^29.6.4", "prettier": "^3.0.3", "react": "^18.2.0", "react-test-renderer": "^18.2.0", "rimraf": "^5.0.1", "ts-jest": "^29.1.1", "typescript": "^5.2.2", "webpack": "^5.88.2", "webpack-cli": "^5.1.4" }, "directories": { "lib": "lib", "test": "test" }, "packageManager": "yarn@3.3.1" }