72 lines
2.5 KiB
JSON
72 lines
2.5 KiB
JSON
|
{
|
||
|
"name": "@firebase/app-compat",
|
||
|
"version": "0.2.27",
|
||
|
"description": "The primary entrypoint to the Firebase JS SDK",
|
||
|
"author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
|
||
|
"main": "dist/index.cjs.js",
|
||
|
"browser": "dist/esm/index.esm2017.js",
|
||
|
"module": "dist/esm/index.esm2017.js",
|
||
|
"esm5": "dist/esm/index.esm5.js",
|
||
|
"lite": "dist/index.lite.js",
|
||
|
"liteesm5": "dist/index.lite.esm5.js",
|
||
|
"exports": {
|
||
|
".": {
|
||
|
"types": "./dist/app-compat-public.d.ts",
|
||
|
"require": "./dist/index.cjs.js",
|
||
|
"esm5": "./dist/esm/index.esm5.js",
|
||
|
"lite": "./dist/index.lite.js",
|
||
|
"liteesm5": "./dist/index.lite.esm5.js",
|
||
|
"default": "./dist/esm/index.esm2017.js"
|
||
|
},
|
||
|
"./package.json": "./package.json"
|
||
|
},
|
||
|
"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/app-compat --include-dependencies build",
|
||
|
"dev": "rollup -c -w",
|
||
|
"test": "run-p --npm-path npm lint test:all",
|
||
|
"test:all": "run-p --npm-path npm test:browser test:node",
|
||
|
"test:ci": "node ../../scripts/run_tests_in_ci.js -s test:all",
|
||
|
"test:browser": "karma start --single-run",
|
||
|
"test:browser:debug": "karma start --browsers Chrome --auto-watch",
|
||
|
"test:node": "TS_NODE_FILES=true TS_NODE_CACHE=NO TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha test/**/*.test.* src/**/*.test.ts --config ../../config/mocharc.node.js",
|
||
|
"api-report": "api-extractor run --local --verbose",
|
||
|
"typings:public": "node ../../scripts/build/use_typings.js ./dist/app-compat-public.d.ts"
|
||
|
},
|
||
|
"license": "Apache-2.0",
|
||
|
"dependencies": {
|
||
|
"@firebase/app": "0.9.27",
|
||
|
"@firebase/util": "1.9.4",
|
||
|
"@firebase/logger": "0.4.0",
|
||
|
"@firebase/component": "0.6.5",
|
||
|
"tslib": "^2.1.0"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"rollup": "2.79.1",
|
||
|
"@rollup/plugin-json": "4.1.0",
|
||
|
"rollup-plugin-replace": "2.2.0",
|
||
|
"rollup-plugin-typescript2": "0.31.2",
|
||
|
"typescript": "4.7.4"
|
||
|
},
|
||
|
"repository": {
|
||
|
"directory": "packages/app-compat",
|
||
|
"type": "git",
|
||
|
"url": "https://github.com/firebase/firebase-js-sdk.git"
|
||
|
},
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/firebase/firebase-js-sdk/issues"
|
||
|
},
|
||
|
"typings": "./dist/app-compat-public.d.ts",
|
||
|
"nyc": {
|
||
|
"extension": [
|
||
|
".ts"
|
||
|
],
|
||
|
"reportDir": "./coverage/node"
|
||
|
}
|
||
|
}
|