|
| 1 | +{ |
| 2 | + "name": "@firebase/telemetry", |
| 3 | + "version": "0.0.1", |
| 4 | + "private": true, |
| 5 | + "description": "The Firebase Web Telemetry package of the Firebase JS SDK", |
| 6 | + "author": "Firebase <[email protected]> (https://firebase.google.com/)", |
| 7 | + "main": "dist/index.node.cjs.js", |
| 8 | + "browser": "dist/index.esm.js", |
| 9 | + "module": "dist/index.esm.js", |
| 10 | + "exports": { |
| 11 | + ".": { |
| 12 | + "types": "./dist/index.d.ts", |
| 13 | + "node": { |
| 14 | + "import": "./dist/node-esm/index.node.esm.js", |
| 15 | + "require": "./dist/index.node.cjs.js" |
| 16 | + }, |
| 17 | + "browser": { |
| 18 | + "require": "./dist/index.cjs.js", |
| 19 | + "import": "./dist/index.esm.js" |
| 20 | + }, |
| 21 | + "default": "./dist/index.esm.js" |
| 22 | + }, |
| 23 | + "./package.json": "./package.json" |
| 24 | + }, |
| 25 | + "files": [ |
| 26 | + "dist" |
| 27 | + ], |
| 28 | + "scripts": { |
| 29 | + "lint": "eslint -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'", |
| 30 | + "lint:fix": "eslint --fix -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'", |
| 31 | + "build": "rollup -c", |
| 32 | + "build:deps": "lerna run --scope @firebase/telemetry --include-dependencies build", |
| 33 | + "dev": "rollup -c -w", |
| 34 | + "test": "run-p --npm-path npm lint test:all", |
| 35 | + "test:ci": "node ../../scripts/run_tests_in_ci.js -s test:all", |
| 36 | + "test:all": "run-p --npm-path npm test:browser test:node", |
| 37 | + "test:browser": "karma start", |
| 38 | + "test:node": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha src/**/*.test.* --config ../../config/mocharc.node.js", |
| 39 | + "trusted-type-check": "tsec -p tsconfig.json --noEmit" |
| 40 | + }, |
| 41 | + "peerDependencies": { |
| 42 | + "@firebase/app": "0.x", |
| 43 | + "@firebase/app-types": "0.x" |
| 44 | + }, |
| 45 | + "dependencies": { |
| 46 | + "tslib": "^2.1.0" |
| 47 | + }, |
| 48 | + "license": "Apache-2.0", |
| 49 | + "devDependencies": { |
| 50 | + "@firebase/app": "0.14.1", |
| 51 | + "jasmine": "5.9.0", |
| 52 | + "rollup": "2.79.2", |
| 53 | + "rollup-plugin-typescript2": "0.36.0", |
| 54 | + "typescript": "5.5.4" |
| 55 | + }, |
| 56 | + "repository": { |
| 57 | + "directory": "packages/telemetry", |
| 58 | + "type": "git", |
| 59 | + "url": "git+https://github.com/firebase/firebase-js-sdk.git" |
| 60 | + }, |
| 61 | + "bugs": { |
| 62 | + "url": "https://github.com/firebase/firebase-js-sdk/issues" |
| 63 | + }, |
| 64 | + "typings": "dist/index.d.ts", |
| 65 | + "nyc": { |
| 66 | + "extension": [ |
| 67 | + ".ts" |
| 68 | + ], |
| 69 | + "reportDir": "./coverage/node" |
| 70 | + } |
| 71 | +} |
0 commit comments