react-select-material-ui
Version:
A react SELECT component based on react-select and looking like a material-ui component
110 lines (109 loc) • 2.69 kB
JSON
{
"name": "react-select-material-ui",
"version": "6.3.0",
"description": "A react SELECT component based on react-select and looking like a material-ui component",
"main": "lib/index.js",
"sideEffects": false,
"scripts": {
"build": "rimraf ./lib && tsc",
"deploy": "cross-env NODE_ENV=production npm run build && npm publish",
"test": "jest",
"storybook": "start-storybook -c storybook",
"build-storybook": "build-storybook -c storybook -o docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iulian-radu-at/react-select-material-ui.git"
},
"files": [
"lib",
"index.d.ts"
],
"keywords": [
"react-select",
"material-ui",
"react-select-material-ui",
"react",
"react-component",
"select",
"combobox",
"input",
"singleselect",
"multiselect",
"multipleselect",
"tagsselect",
"colorsselect",
"ui",
"material design"
],
"author": "Iulian Radu <iulian.radu@gmx.at>",
"license": "MIT",
"bugs": {
"url": "https://github.com/iulian-radu-at/react-select-material-ui/issues"
},
"homepage": "https://github.com/iulian-radu-at/react-select-material-ui#readme",
"dependencies": {
"@material-ui/core": "^4.9.0",
"lodash": "^4.17.15",
"react-select": "^2.4.4"
},
"devDependencies": {
"@storybook/react": "^5.3.9",
"@types/babel-core": "^6.25.6",
"@types/enzyme": "^3.10.4",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.9.1",
"@types/lodash": "^4.14.149",
"@types/node": "^13.5.0",
"@types/react": "16.9.19",
"@types/react-dom": "16.9.5",
"@types/react-select": "^2.0.19",
"@types/rimraf": "^2.0.3",
"babel-core": "^6.26.3",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"babel-preset-react-app": "^9.1.0",
"cross-env": "^7.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"jest": "^25.1.0",
"react": "16.9.0",
"react-dom": "16.9.0",
"rimraf": "^3.0.0",
"ts-jest": "^25.0.0",
"typescript": "^3.7.5"
},
"peerDependencies": {
"react": "^16.9.0",
"react-dom": "^16.9.0"
},
"jest": {
"modulePathIgnorePatterns": [
"./node_modules",
"./history"
],
"moduleDirectories": [
"node_modules",
"src"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "src/.+\\.test\\.tsx$",
"setupFiles": [
"./enzymeAdapter.setup.js"
]
}
}