├── .babelrc ├── .editorconfig ├── .eslintrc ├── .flowconfig ├── .gitignore ├── .lintstagedrc ├── .npmignore ├── .travis.yml ├── README.md ├── creds.json ├── lib ├── index.js ├── index.spec.js └── resourceObj │ └── utils.js ├── package.json ├── src ├── index.js ├── index.spec.js └── resourceObj │ └── utils.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhlaw/firestore-security-tests/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhlaw/firestore-security-tests/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhlaw/firestore-security-tests/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhlaw/firestore-security-tests/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /.idea 3 | -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhlaw/firestore-security-tests/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhlaw/firestore-security-tests/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhlaw/firestore-security-tests/HEAD/README.md -------------------------------------------------------------------------------- /creds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhlaw/firestore-security-tests/HEAD/creds.json -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhlaw/firestore-security-tests/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhlaw/firestore-security-tests/HEAD/lib/index.spec.js -------------------------------------------------------------------------------- /lib/resourceObj/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhlaw/firestore-security-tests/HEAD/lib/resourceObj/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhlaw/firestore-security-tests/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhlaw/firestore-security-tests/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhlaw/firestore-security-tests/HEAD/src/index.spec.js -------------------------------------------------------------------------------- /src/resourceObj/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhlaw/firestore-security-tests/HEAD/src/resourceObj/utils.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willhlaw/firestore-security-tests/HEAD/yarn.lock --------------------------------------------------------------------------------