2020-08-04 16:22:31 +02:00
|
|
|
{
|
|
|
|
"name": "react-component-form",
|
2020-10-03 19:07:09 +02:00
|
|
|
"version": "1.1.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",
|
|
|
|
"source": "src/index.tsx",
|
|
|
|
"engines": {
|
|
|
|
"node": ">=10"
|
|
|
|
},
|
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": {
|
|
|
|
"react": "^16.0.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-10-03 19:07:09 +02:00
|
|
|
"@commitlint/cli": "^11.0.0",
|
|
|
|
"@commitlint/config-conventional": "^11.0.0",
|
|
|
|
"@testing-library/jest-dom": "^5.11.4",
|
|
|
|
"@testing-library/react": "^11.0.4",
|
|
|
|
"@testing-library/user-event": "^12.1.7",
|
|
|
|
"@types/jest": "^26.0.14",
|
|
|
|
"@types/node": "^14.11.2",
|
|
|
|
"@types/react": "^16.9.50",
|
|
|
|
"@types/react-dom": "^16.9.8",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^4.0.1",
|
|
|
|
"@typescript-eslint/parser": "^4.0.1",
|
|
|
|
"babel-eslint": "^10.1.0",
|
2020-08-04 16:22:31 +02:00
|
|
|
"cross-env": "^7.0.2",
|
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",
|
|
|
|
"eslint-plugin-prettier": "^3.1.4",
|
2020-08-04 16:22:31 +02:00
|
|
|
"eslint-plugin-promise": "^4.2.1",
|
2020-10-03 19:07:09 +02:00
|
|
|
"eslint-plugin-react": "^7.21.3",
|
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",
|
|
|
|
"husky": "^4.3.0",
|
|
|
|
"microbundle-crl": "^0.13.11",
|
2020-08-04 16:22:31 +02:00
|
|
|
"npm-run-all": "^4.1.5",
|
2020-10-03 19:07:09 +02:00
|
|
|
"prettier": "^2.1.2",
|
2020-08-04 16:22:31 +02:00
|
|
|
"react": "^16.13.1",
|
|
|
|
"react-dom": "^16.13.1",
|
2020-10-03 19:07:09 +02:00
|
|
|
"react-scripts": "^3.4.3",
|
|
|
|
"typescript": "^4.0.3"
|
2020-08-04 16:49:14 +02:00
|
|
|
}
|
2020-08-04 16:22:31 +02:00
|
|
|
}
|