mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
79 lines
1.9 KiB
JSON
79 lines
1.9 KiB
JSON
{
|
|
"name": "formik",
|
|
"description": "Build forms in React, without the tears",
|
|
"version": "2.2.9",
|
|
"license": "Apache-2.0",
|
|
"author": "Jared Palmer <jared@palmer.net> (https://jaredpalmer.com)",
|
|
"repository": "formium/formik",
|
|
"homepage": "https://formik.org",
|
|
"keywords": [
|
|
"formik",
|
|
"form",
|
|
"forms",
|
|
"react",
|
|
"react-dom",
|
|
"hooks",
|
|
"react hooks",
|
|
"validation",
|
|
"render props",
|
|
"validation",
|
|
"higher order component",
|
|
"hoc"
|
|
],
|
|
"funding": [
|
|
{
|
|
"type": "individual",
|
|
"url": "https://opencollective.com/formik"
|
|
}
|
|
],
|
|
"main": "dist/index.js",
|
|
"umd:main": "dist/formik.umd.production.js",
|
|
"module": "dist/formik.esm.js",
|
|
"typings": "dist/index.d.ts",
|
|
"files": ["dist"],
|
|
"peerDependencies": {
|
|
"react": ">=16.8.0"
|
|
},
|
|
"scripts": {
|
|
"test": "tsdx test --env=jsdom",
|
|
"test:watch": "npm run test -- --watchAll",
|
|
"start": "tsdx watch --tsconfig tsconfig.build.json --verbose --noClean",
|
|
"build": "tsdx build --tsconfig tsconfig.build.json",
|
|
"lint": "tsdx lint",
|
|
"prepublish": "npm run build"
|
|
},
|
|
"dependencies": {
|
|
"deepmerge": "^2.1.1",
|
|
"hoist-non-react-statics": "^3.3.0",
|
|
"lodash": "^4.17.21",
|
|
"lodash-es": "^4.17.21",
|
|
"react-fast-compare": "^2.0.1",
|
|
"tiny-warning": "^1.0.2",
|
|
"tslib": "^1.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/react": "^11.1.0",
|
|
"@types/hoist-non-react-statics": "^3.3.1",
|
|
"@types/lodash": "^4.14.119",
|
|
"@types/react": "^16.9.55",
|
|
"@types/react-dom": "^16.9.9",
|
|
"@types/warning": "^3.0.0",
|
|
"@types/yup": "^0.24.9",
|
|
"just-debounce-it": "^1.1.0",
|
|
"react": "^17.0.1",
|
|
"react-dom": "^17.0.1",
|
|
"yup": "^0.28.1"
|
|
},
|
|
"jest": {
|
|
"globals": {
|
|
"__DEV__": "boolean"
|
|
},
|
|
"collectCoverageFrom": [
|
|
"src/**/*.{ts,tsx}"
|
|
],
|
|
"setupFilesAfterEnv": [
|
|
"<rootDir>/test/setupTests.ts"
|
|
]
|
|
}
|
|
}
|