{
  "name": "@firebase/auth-compat",
  "version": "0.0.900",
  "private": true,
  "description": "FirebaseAuth compatibility package that uses API style compatible with Firebase@7 and prior versions",
  "author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
  "main": "dist/index.node.cjs.js",
  "browser": "dist/index.esm2017.js",
  "module": "dist/index.esm2017.js",
  "files": [
    "dist"
  ],
  "scripts": {
    "lint": "eslint -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
    "lint:fix": "eslint --fix -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
    "build": "rollup -c",
    "build:deps": "lerna run --scope @firebase/auth-compat --include-dependencies build",
    "build:release": "rollup -c rollup.config.release.js && yarn add-compat-overloads",
    "dev": "rollup -c -w",
    "test": "run-p lint test:all",
    "test:all": "run-p test:browser test:node",
    "test:ci": "node ../../scripts/run_tests_in_ci.js -s test:all",
    "test:browser": "karma start --single-run",
    "test:browser:integration": "karma start --single-run --integration",
    "test:node": "ts-node -O '{\"module\": \"commonjs\", \"target\": \"es6\"}' scripts/run_node_tests.ts",
    "test:node:integration": "ts-node -O '{\"module\": \"commonjs\", \"target\": \"es6\"}' scripts/run_node_tests.ts --integration",
    "test:webdriver": "rollup -c test/integration/webdriver/static/rollup.config.js && ts-node -O '{\"module\": \"commonjs\", \"target\": \"es6\"}' scripts/run_node_tests.ts --webdriver",
    "test:integration": "run-s test:browser:integration test:node:integration test:webdriver",
    "add-compat-overloads": "ts-node-script ../../scripts/exp/create-overloads.ts -i ../auth-exp/dist/auth-exp-public.d.ts -o dist/auth-compat-exp/index.d.ts -a -r Auth:types.FirebaseAuth -r User:types.User -r FirebaseApp:FirebaseAppCompat --moduleToEnhance @firebase/auth"
  },
  "peerDependencies": {
    "@firebase/app-compat": "0.x"
  },
  "dependencies": {
    "@firebase/auth-exp": "0.0.900",
    "@firebase/auth-types": "0.10.3",
    "@firebase/component": "0.5.1",
    "@firebase/util": "1.1.0",
    "node-fetch": "2.6.1",
    "selenium-webdriver": "^4.0.0-beta.2",
    "tslib": "^2.1.0"
  },
  "license": "Apache-2.0",
  "devDependencies": {
    "@firebase/app-compat": "0.x",
    "@rollup/plugin-json": "4.1.0",
    "rollup": "2.35.1",
    "rollup-plugin-replace": "2.2.0",
    "rollup-plugin-typescript2": "0.29.0",
    "typescript": "4.2.2"
  },
  "repository": {
    "directory": "packages-exp/auth-compat-exp",
    "type": "git",
    "url": "https://github.com/firebase/firebase-js-sdk.git"
  },
  "bugs": {
    "url": "https://github.com/firebase/firebase-js-sdk/issues"
  },
  "typings": "dist/auth-compat-exp/index.d.ts",
  "nyc": {
    "extension": [
      ".ts"
    ],
    "reportDir": "./coverage/node"
  },
  "esm5": "dist/index.esm.js"
}