{
	"name": "@time-input-polyfill/react",
	"version": "2.0.2",
	"description": "A pre-built, plug-and-play, fully accessible React component that will produce an `input[type='time']` element with a built in polyfill for IE and Safari support.",
	"main": "index.js",
	"private": false,
	"repository": {
		"type": "git",
		"url": "git+https://github.com/Dan503/react-time-input-polyfill.git"
	},
	"keywords": [
		"React",
		"time",
		"input",
		"polyfill",
		"IE",
		"accessible",
		"accessibility",
		"a11y"
	],
	"author": "Daniel Tonon",
	"license": "MIT",
	"bugs": {
		"url": "https://github.com/Dan503/react-time-input-polyfill/issues"
	},
	"homepage": "https://dan503.github.io/react-time-input-polyfill/",
	"dependencies": {
		"@dan503/load-js": "^1.0.7",
		"@time-input-polyfill/utils": "^1.0.4"
	},
	"peerDependencies": {
		"react": "^17.0.2"
	},
	"devDependencies": {
		"@babel/plugin-proposal-private-methods": "^7.16.11",
		"@babel/plugin-transform-runtime": "^7.17.0",
		"@babel/preset-env": "^7.16.11",
		"@rollup/plugin-babel": "^5.3.1",
		"@rollup/plugin-commonjs": "^21.0.2",
		"@rollup/plugin-node-resolve": "^13.1.3",
		"@testing-library/jest-dom": "^5.16.2",
		"@testing-library/react": "^12.1.3",
		"@testing-library/user-event": "^13.5.0",
		"@time-input-polyfill/tests": "^1.0.0",
		"@types/react-dom": "^17.0.13",
		"@types/react-syntax-highlighter": "^13.5.2",
		"copyfiles": "^2.4.1",
		"core-js": "^3.21.1",
		"cypress": "^9.5.1",
		"cypress-plugin-tab": "^1.0.5",
		"cypress-promise": "^1.1.0",
		"del-cli": "^4.0.1",
		"eslint-plugin-cypress": "^2.12.1",
		"npm-run-all": "^4.1.5",
		"react-app-polyfill": "^2.0.0",
		"react-dom": "^17.0.2",
		"react-scripts": "^4.0.3",
		"react-syntax-highlighter": "^15.4.5",
		"rollup": "^2.69.1",
		"rollup-plugin-terser": "^7.0.2",
		"typescript": "^4.6.2"
	},
	"scripts": {
		"start": "node node_modules/react-scripts/scripts/start.js",
		"build": "node node_modules/react-scripts/scripts/build.js && npm run copy",
		"copy": "npx copyfiles -u 1 build/**/* docs",
		"test": "run-p start cy",
		"cy": "cypress open",
		"ts": "tsc --project tsconfig.npm.json",
		"prepublishOnly": "run-p ts build",
		"postpublish": "npm run clean",
		"clean": "del-cli index.js index.d.ts src/core/index.js src/core/index.d.ts src/core/TimeInputPolyFill.js src/core/TimeInputPolyFill.d.ts"
	},
	"eslintConfig": {
		"extends": "react-app"
	},
	"browserslist": {
		"production": [
			">0.2%",
			"not dead",
			"not op_mini all",
			"IE 11"
		],
		"development": [
			"last 1 chrome version",
			"last 1 firefox version",
			"last 1 safari version",
			"last 1 ie version"
		]
	},
	"babel": {
		"presets": [
			"react-app"
		]
	},
	"prettier": {
		"singleQuote": true,
		"semi": false,
		"useTabs": true,
		"trailingComma": "all",
		"overrides": [
			{
				"files": "README.md",
				"options": {
					"useTabs": false,
					"tabWidth": 4,
					"trailingComma": "es5"
				}
			}
		]
	}
}
