@point-api/dropdown-react
Version:
HOC to add a Point API autocomplete dropdown
101 lines (100 loc) • 2.46 kB
JSON
{
"name": "@point-api/dropdown-react",
"description": "HOC to add a Point API autocomplete dropdown",
"version": "1.1.26",
"repository": "github:PointMail/dropdown-react",
"homepage": "https://docs.pointapi.com",
"bugs": "https://github.com/PointMail/dropdown-react/issues",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"Point API",
"Point",
"autocomplete",
"completion"
],
"files": [
"dist"
],
"author": "Alex Iansiti <alex@pointapi.com>",
"license": "UNLICENSED",
"scripts": {
"build": "tsc && cp -p src/*.css dist",
"release": "npm version patch -m \"Bumping to %s\" && git push origin master --tags",
"gen-docs": "typedoc --out docs src/AutoComplete.tsx --theme markdown",
"test": "jest"
},
"peerDependencies": {
"react": "16.10.2",
"react-dom": "16.10.2"
},
"dependencies": {
"@material-ui/core": "4.5.0",
"@material-ui/icons": "4.4.3",
"@point-api/js-sdk": "1.1.39",
"clsx": "1.0.4",
"textarea-caret": "3.1.0"
},
"devDependencies": {
"@types/enzyme": "3.10.3",
"@types/jest": "24.0.18",
"@types/node": "12.7.12",
"@types/react": "16.9.5",
"@types/react-dom": "16.9.1",
"@types/textarea-caret": "3.0.0",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.15.1",
"ignore-styles": "5.0.1",
"jest": "24.9.0",
"less": "3.10.3",
"merge": "1.2.1",
"react": "16.10.2",
"react-dom": "16.10.2",
"ts-jest": "24.1.0",
"tslint": "5.20.0",
"tslint-config-prettier": "1.18.0",
"tslint-react": "4.1.0",
"typedoc": "0.15.0",
"typedoc-plugin-markdown": "2.2.10",
"typescript": "3.6.4"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"moduleDirectories": [
"node_modules",
"src"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"setupFilesAfterEnv": [
"./__tests__/setupTests.js"
],
"testMatch": [
"**/__tests__/*.test.+(ts|tsx|js)"
],
"moduleNameMapper": {
"^.*[.](jpg|JPG|gif|GIF|png|PNG|less|LESS|css|CSS)$": "EmptyModule"
},
"coverageThreshold": {
"global": {
"branches": 60,
"functions": 60,
"lines": 60,
"statements": 60
}
},
"coveragePathIgnorePatterns": [
"/__tests__/"
]
}
}