UNPKG

formsy-react

Version:

A form input builder and validator for React

95 lines (94 loc) 2.27 kB
{ "name": "formsy-react", "version": "2.3.2", "description": "A form input builder and validator for React", "keywords": [ "form", "forms", "formsy", "react", "react-component", "validation" ], "license": "MIT", "homepage": "https://github.com/formsy/formsy-react", "bugs": "https://github.com/formsy/formsy-react/issues", "repository": { "type": "git", "url": "https://github.com/formsy/formsy-react.git" }, "author": "Christian Alfoni and the Formsy Authors", "main": "dist/index.js", "module": "dist/formsy-react.esm.js", "typings": "dist/index.d.ts", "files": [ "dist", "src" ], "types": "dist/index.d.ts", "scripts": { "build": "tsdx build", "build:clean": "rm -r dist/* || true", "changelog": "auto-changelog", "deploy": "np", "format": "prettier --write \"**/*.{js,jsx,ts,tsx,md}\"", "lint": "tsdx lint", "prepublishOnly": "tsdx build", "preversion": "npm run lint", "start": "tsdx watch", "test": "tsdx test --passWithNoTests" }, "dependencies": { "lodash": "^4.17.21", "lodash-es": "^4.17.21", "prop-types": "^15.8.1" }, "devDependencies": { "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^13.4.0", "@types/jest": "^29.5.12", "@types/lodash": "4.14.188", "@types/prop-types": "^15.7.12", "@types/react": "^18.0.25", "@types/react-dom": "^18.0.8", "auto-changelog": "^2.4.0", "coveralls": "^3.1.1", "eslint-plugin-prettier": "^3.4.1", "husky": "^4.2.1", "np": "^9.2.0", "prettier": "^2.8.8", "react": "^18.0.0", "react-dom": "^18.0.0", "tsdx": "^0.14.1", "tslib": "^2.6.3", "typescript": "^4.9.5" }, "peerDependencies": { "react": "^16.0.0 || ^17.0.0 || ^18.0.0", "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0" }, "standard-version": { "skip": { "tag": true } }, "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "prettier": { "printWidth": 120, "semi": true, "singleQuote": true, "proseWrap": "always", "trailingComma": "all" }, "jest": { "collectCoverage": true, "collectCoverageFrom": [ "src/**/*.tsx", "src/**/*.ts" ] } }