UNPKG

fielder

Version:

A field-first form library for React and React Native

80 lines (79 loc) 2.4 kB
{ "name": "fielder", "version": "2.2.0", "description": "A field-first form library for React and React Native", "main": "dist/index.js", "module": "dist/index.es.js", "umd:main": "dist/index.umd.js", "types": "dist/index.d.ts", "sideEffects": false, "keywords": [ "fielder", "react", "form", "dynamic", "validation" ], "files": [ "LICENSE", "README.md", "CHANGELOG.md", "docs/src/pages", "dist", "preact/dist", "src", "preact/src", "preact/package.json" ], "scripts": { "start": "rollup -c rollup.config.js --watch", "test": "jest", "build": "npm run build:react && npm run build:preact", "build:react": "rm -rf dist && rollup -c rollup.config.js", "build:preact": "rm -rf preact/dist && PREACT=true rollup -c rollup.config.js", "check-formatting": "prettier --check \"./**/*.{ts,tsx,md,mdx,html}\" \"!./CHANGELOG.md\"", "lint": "eslint -c .eslintrc \"src/**.{ts,tsx}\"", "changelog": "docker run -it --rm -v \"$(pwd)\":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator -u andyrichardson -p fielder" }, "author": "Andy Richardson (andyrichardson)", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/andyrichardson/fielder.git" }, "bugs": { "url": "https://github.com/andyrichardson/fielder/issues" }, "homepage": "https://fielder.andyrichardson.dev", "devDependencies": { "@babel/cli": "^7.13.0", "@babel/core": "^7.13.8", "@babel/plugin-syntax-typescript": "^7.12.13", "@types/jest": "^26.0.20", "@types/react": "^17.0.2", "@types/react-dom": "^17.0.1", "@types/react-test-renderer": "^17.0.1", "@typescript-eslint/eslint-plugin": "^4.15.2", "@typescript-eslint/parser": "^4.15.2", "eslint": "^7.21.0", "eslint-config-prettier": "^8.1.0", "eslint-plugin-react": "^7.22.0", "eslint-plugin-react-hooks": "^4.2.0", "jest": "^26.6.3", "preact": "^10.5.9", "prettier": "^2.2.1", "react": "^17.0.1", "react-dom": "^17.0.1", "react-test-renderer": "^17.0.1", "rollup": "^2.40.0", "rollup-plugin-terser": "^7.0.2", "rollup-plugin-typescript2": "^0.30.0", "ts-jest": "^26.5.2", "tslib": "^2.1.0", "typescript": "^4.2.2" }, "optionalDependencies": { "preact": ">=10.5.9", "react": ">=16.8.0" } }