UNPKG

2.44 kBJSONView Raw
1{
2 "name": "@firebase/app",
3 "version": "0.7.10",
4 "description": "The primary entrypoint to the Firebase JS SDK",
5 "author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
6 "main": "dist/index.cjs.js",
7 "browser": "dist/esm/index.esm2017.js",
8 "module": "dist/esm/index.esm2017.js",
9 "esm5": "dist/esm/index.esm5.js",
10 "exports": {
11 ".": {
12 "require": "./dist/index.cjs.js",
13 "esm5": "./dist/esm/index.esm5.js",
14 "default": "./dist/esm/index.esm2017.js"
15 },
16 "./package.json": "./package.json"
17 },
18 "files": [
19 "dist"
20 ],
21 "scripts": {
22 "lint": "eslint -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
23 "lint:fix": "eslint --fix -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
24 "build": "rollup -c && yarn api-report",
25 "build:release": "rollup -c rollup.config.release.js && yarn api-report && yarn typings:public",
26 "build:deps": "lerna run --scope @firebase/app --include-dependencies build",
27 "dev": "rollup -c -w",
28 "test": "run-p lint test:all",
29 "test:ci": "node ../../scripts/run_tests_in_ci.js -s test:all",
30 "test:all": "run-p test:browser test:node",
31 "test:browser": "karma start --single-run",
32 "test:node": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha src/**/*.test.ts --config ../../config/mocharc.node.js",
33 "api-report": "api-extractor run --local --verbose",
34 "doc": "api-documenter markdown --input temp --output docs",
35 "build:doc": "yarn build && yarn doc",
36 "typings:public": "node ../../scripts/build/use_typings.js ./dist/app-public.d.ts",
37 "typings:internal": "node ../../scripts/build/use_typings.js ./dist/app.d.ts"
38 },
39 "dependencies": {
40 "@firebase/util": "1.4.2",
41 "@firebase/logger": "0.3.2",
42 "@firebase/component": "0.5.9",
43 "tslib": "^2.1.0"
44 },
45 "license": "Apache-2.0",
46 "devDependencies": {
47 "rollup": "2.57.0",
48 "@rollup/plugin-json": "4.1.0",
49 "rollup-plugin-replace": "2.2.0",
50 "rollup-plugin-typescript2": "0.30.0",
51 "typescript": "4.2.2"
52 },
53 "repository": {
54 "directory": "packages/app",
55 "type": "git",
56 "url": "https://github.com/firebase/firebase-js-sdk.git"
57 },
58 "bugs": {
59 "url": "https://github.com/firebase/firebase-js-sdk/issues"
60 },
61 "typings": "./dist/app-public.d.ts",
62 "nyc": {
63 "extension": [
64 ".ts"
65 ],
66 "reportDir": "./coverage/node"
67 }
68}