2018-07-16 20:18:17 +02:00
{
"name" : "react-datalist-input" ,
2020-09-06 00:58:18 +02:00
"version" : "2.0.0" ,
2018-07-16 20:18:17 +02:00
"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." ,
2020-06-15 02:38:02 +02:00
"main" : "./dist/DataListInput.js" ,
2020-06-15 02:43:19 +02:00
"files" : [
"dist"
] ,
2019-06-13 09:39:06 +02:00
"license" : "MIT" ,
2018-07-16 20:18:17 +02:00
"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"
] ,
2018-07-19 13:11:01 +02:00
"devDependencies" : {
2020-06-15 02:38:02 +02:00
"@babel/cli" : "^7.10.1" ,
"@babel/core" : "^7.10.2" ,
"@babel/plugin-proposal-class-properties" : "^7.10.1" ,
2020-09-06 00:58:18 +02:00
"@babel/plugin-transform-regenerator" : "^7.10.4" ,
"@babel/plugin-transform-runtime" : "^7.11.5" ,
2020-06-15 02:38:02 +02:00
"@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" ,
2020-09-06 00:58:18 +02:00
"babel-eslint" : "^9.0.0" ,
"eslint" : "^6.8.0" ,
"eslint-config-airbnb" : "^18.2.0" ,
"eslint-config-prettier" : "^4.3.0" ,
"eslint-config-wesbos" : "0.0.22" ,
"eslint-plugin-html" : "^6.0.3" ,
"eslint-plugin-import" : "^2.22.0" ,
2020-06-15 02:38:02 +02:00
"eslint-plugin-jest-dom" : "^3.0.1" ,
2020-09-06 00:58:18 +02:00
"eslint-plugin-jsx-a11y" : "^6.3.1" ,
"eslint-plugin-prettier" : "^3.1.4" ,
"eslint-plugin-react" : "^7.20.6" ,
"eslint-plugin-react-hooks" : "^1.7.0" ,
2020-06-15 02:38:02 +02:00
"jest" : "^26.0.1" ,
2020-09-06 00:58:18 +02:00
"prettier" : "^1.19.1" ,
2019-08-14 15:38:13 +02:00
"prop-types" : "^15.7.2" ,
2020-06-15 02:38:02 +02:00
"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"
2018-07-16 20:18:17 +02:00
} ,
"peerDependencies" : {
2019-06-13 09:39:06 +02:00
"prop-types" : "^15.6.0" ,
"react" : "^16.0.0" ,
"react-dom" : "^16.0.0"
2018-07-19 13:11:01 +02:00
} ,
"scripts" : {
2020-06-15 02:38:02 +02:00
"test" : "jest" ,
"build" : "rollup -c" ,
"start" : "rollup -c -w"
} ,
"jest" : {
"modulePathIgnorePatterns" : [
"<rootDir>/tests/demo-app"
] ,
"moduleNameMapper" : {
"\\.(css|scss)$" : "<rootDir>/tests/unit/styleMock.js"
}
2018-07-16 20:18:17 +02:00
}
2019-08-14 15:38:13 +02:00
}