react-datalist-input/package.json
2020-06-15 02:43:19 +02:00

73 lines
1.9 KiB
JSON

{
"name": "react-datalist-input",
"version": "1.3.12",
"description": "This package provides a react component as follows: an input field with a drop down menu to pick a possible option based on the current input.",
"main": "./dist/DataListInput.js",
"files": [
"dist"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/andrelandgraf/react-datalist-input.git"
},
"homepage": "https://github.com/andrelandgraf/react-datalist-input",
"bugs": "https://github.com/andrelandgraf/react-datalist-input/issues",
"authors": [
"Andre Landgraf <andre.timo.landgraf@gmail.com>"
],
"tags": [
"react",
"datalist",
"input",
"select",
"autocomplete",
"combobox",
"highlight"
],
"keywords": [
"react",
"datalist",
"input"
],
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^10.2.1",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jest-dom": "^3.0.1",
"jest": "^26.0.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^2.16.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-jsx": "^1.0.3",
"rollup-plugin-sass": "^1.2.2"
},
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"scripts": {
"test": "jest",
"build": "rollup -c",
"start": "rollup -c -w"
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/tests/demo-app"
],
"moduleNameMapper": {
"\\.(css|scss)$": "<rootDir>/tests/unit/styleMock.js"
}
}
}