1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- {
- "name": "@firebase/installations",
- "version": "0.6.1",
- "author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
- "main": "dist/index.cjs.js",
- "module": "dist/esm/index.esm2017.js",
- "browser": "dist/esm/index.esm2017.js",
- "esm5": "dist/esm/index.esm.js",
- "exports": {
- ".": {
- "types": "./dist/installations-public.d.ts",
- "require": "./dist/index.cjs.js",
- "esm5": "./dist/esm/index.esm.js",
- "default": "./dist/esm/index.esm2017.js"
- },
- "./package.json": "./package.json"
- },
- "typings": "./dist/installations-public.d.ts",
- "license": "Apache-2.0",
- "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 && yarn api-report",
- "build:deps": "lerna run --scope @firebase/installations --include-dependencies build",
- "build:release": "yarn build && yarn typings:public",
- "dev": "rollup -c -w",
- "test": "yarn type-check && yarn test:karma && yarn lint",
- "test:ci": "node ../../scripts/run_tests_in_ci.js",
- "test:karma": "karma start --single-run",
- "test:debug": "karma start --browsers=Chrome --auto-watch",
- "type-check": "tsc -p . --noEmit",
- "serve": "yarn serve:build && yarn serve:host",
- "serve:build": "rollup -c test-app/rollup.config.js",
- "serve:host": "http-server -c-1 test-app",
- "api-report": "api-extractor run --local --verbose",
- "doc": "api-documenter markdown --input temp --output docs",
- "build:doc": "yarn build && yarn doc",
- "typings:public": "node ../../scripts/build/use_typings.js ./dist/installations-public.d.ts",
- "typings:internal": "node ../../scripts/build/use_typings.js ./dist/src/index.d.ts"
- },
- "repository": {
- "directory": "packages/installations",
- "type": "git",
- "url": "https://github.com/firebase/firebase-js-sdk.git"
- },
- "bugs": {
- "url": "https://github.com/firebase/firebase-js-sdk/issues"
- },
- "devDependencies": {
- "@firebase/app": "0.9.1",
- "rollup": "2.79.1",
- "@rollup/plugin-commonjs": "21.1.0",
- "@rollup/plugin-json": "4.1.0",
- "@rollup/plugin-node-resolve": "13.3.0",
- "rollup-plugin-typescript2": "0.31.2",
- "rollup-plugin-uglify": "6.0.4",
- "typescript": "4.7.4"
- },
- "peerDependencies": {
- "@firebase/app": "0.x"
- },
- "dependencies": {
- "@firebase/util": "1.9.0",
- "@firebase/component": "0.6.1",
- "idb": "7.0.1",
- "tslib": "^2.1.0"
- }
- }
|