1
1
mirror of https://github.com/theoludwig/react-component-form.git synced 2024-07-17 07:30:13 +02:00
react-component-form/package.json

87 lines
2.5 KiB
JSON
Raw Normal View History

2020-08-04 16:22:31 +02:00
{
"name": "react-component-form",
2020-12-27 19:47:15 +01:00
"version": "1.3.0",
2020-08-04 16:22:31 +02:00
"description": "Manage React Forms with ease.",
2020-08-04 16:49:14 +02:00
"author": "Divlo <contact@divlo.fr>",
2020-08-04 16:22:31 +02:00
"license": "MIT",
2020-08-04 16:49:14 +02:00
"files": [
"dist"
],
2020-08-04 16:22:31 +02:00
"main": "dist/index.js",
"module": "dist/index.modern.js",
2020-12-27 19:47:15 +01:00
"types": "dist/index.d.ts",
2020-08-04 16:22:31 +02:00
"source": "src/index.tsx",
"engines": {
2020-10-26 03:14:42 +01:00
"node": ">=12"
2020-08-04 16:22:31 +02:00
},
2020-08-04 16:49:14 +02:00
"repository": {
"type": "git",
"url": "git+https://github.com/Divlo/react-component-form.git"
},
"keywords": [
"react-form",
"react-component-form"
],
"bugs": {
"url": "https://github.com/Divlo/react-component-form/issues"
},
"homepage": "https://github.com/Divlo/react-component-form#readme",
2020-10-03 19:07:09 +02:00
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
2020-08-04 16:22:31 +02:00
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
2020-08-05 17:11:57 +02:00
"test:lint": "eslint ./**/*.{js,jsx,ts,tsx}",
2020-08-04 16:22:31 +02:00
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
2020-12-27 19:47:15 +01:00
"react": "*"
2020-08-04 16:22:31 +02:00
},
"devDependencies": {
2020-10-03 19:07:09 +02:00
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
2020-12-27 19:47:15 +01:00
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.6.0",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.16",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
2020-10-03 19:07:09 +02:00
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"babel-eslint": "^10.1.0",
2020-12-27 19:47:15 +01:00
"cross-env": "^7.0.3",
2020-10-03 19:07:09 +02:00
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-standard": "^14.1.1",
2020-08-04 16:22:31 +02:00
"eslint-config-standard-react": "^9.2.0",
2020-10-03 19:07:09 +02:00
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
2020-12-27 19:47:15 +01:00
"eslint-plugin-prettier": "^3.3.0",
2020-08-04 16:22:31 +02:00
"eslint-plugin-promise": "^4.2.1",
2020-12-27 19:47:15 +01:00
"eslint-plugin-react": "^7.21.5",
2020-08-04 16:22:31 +02:00
"eslint-plugin-standard": "^4.0.1",
2020-10-03 19:07:09 +02:00
"gh-pages": "^3.1.0",
2020-12-27 19:47:15 +01:00
"husky": "^4.3.6",
2020-10-03 19:07:09 +02:00
"microbundle-crl": "^0.13.11",
2020-08-04 16:22:31 +02:00
"npm-run-all": "^4.1.5",
2020-12-27 19:47:15 +01:00
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
2020-10-03 19:07:09 +02:00
"react-scripts": "^3.4.3",
2020-12-27 19:47:15 +01:00
"typescript": "^4.1.3"
2020-10-26 02:56:36 +01:00
},
"dependencies": {
"polyfill-object.fromentries": "^1.0.1"
2020-08-04 16:49:14 +02:00
}
2020-08-04 16:22:31 +02:00
}