UNPKG

react-firestore

Version:

React components to fetch data from firestore using render props

89 lines (88 loc) 2.21 kB
{ "name": "react-firestore", "version": "1.0.1", "description": "React components to fetch data from firestore using render props", "author": "Andrew Walton", "license": "MIT", "homepage": "https://github.com/green-arrow/react-firestore#readme", "repository": { "type": "git", "url": "git+https://github.com/green-arrow/react-firestore.git" }, "bugs": { "url": "https://github.com/green-arrow/react-firestore/issues" }, "main": "dist/react-firestore.cjs.js", "jsnext:main": "dist/react-firestore.esm.js", "module": "dist/react-firestore.esm.js", "scripts": { "cm": "git-cz", "build": "kcd-scripts build --bundle --p-react", "lint": "kcd-scripts lint", "test": "kcd-scripts test", "test:cover": "kcd-scripts test --coverage", "test:build": "kcd-scripts test --no-watch", "build-and-test": "npm run build -s && npm run test:build -s", "validate": "kcd-scripts validate lint,build-and-test,test:cover", "prepare": "npm run build" }, "husky": { "hooks": { "pre-commit": "kcd-scripts pre-commit" } }, "files": [ "dist", "preact" ], "eslintConfig": { "extends": "./node_modules/kcd-scripts/eslint.js", "rules": { "max-lines": "off", "no-eq-null": "off", "eqeqeq": "off", "react/jsx-indent": "off", "react/no-unused-state": "off", "complexity": [ "error", 12 ] } }, "eslintIgnore": [ "node_modules", "coverage", "dist", "__tests__" ], "keywords": [ "react", "firestore", "firebase" ], "dependencies": { "@babel/runtime": "^7.3.4", "hoist-non-react-statics": "^3.3.0" }, "peerDependencies": { "prop-types": ">=15", "react": ">=16.3" }, "devDependencies": { "commitizen": "^3.0.7", "cz-conventional-changelog": "^2.1.0", "enzyme": "^3.8.0", "enzyme-adapter-react-16": "^1.9.1", "kcd-scripts": "^1.1.0", "preact": "^8.4.2", "prop-types": "^15.7.2", "react": "^16.8.4", "react-dom": "^16.8.4", "react-test-renderer": "^16.8.4" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } } }