summaryrefslogtreecommitdiff
path: root/frontend-old/node_modules/@firebase/functions-compat/package.json
blob: 55c31dc9bd6d844ff32c38404a02bab1db8a417b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
  "name": "@firebase/functions-compat",
  "version": "0.4.1",
  "description": "",
  "author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
  "main": "dist/index.cjs.js",
  "browser": "dist/esm/index.esm.js",
  "module": "dist/esm/index.esm.js",
  "exports": {
    ".": {
      "types": "./dist/src/index.d.ts",
      "node": {
        "require": "./dist/index.cjs.js",
        "import": "./dist/esm/index.esm.js"
      },
      "browser": {
        "require": "./dist/index.cjs.js",
        "import": "./dist/esm/index.esm.js"
      },
      "default": "./dist/esm/index.esm.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist"
  ],
  "license": "Apache-2.0",
  "peerDependencies": {
    "@firebase/app-compat": "0.x"
  },
  "devDependencies": {
    "@firebase/app-compat": "0.5.2",
    "rollup": "2.79.2",
    "@rollup/plugin-json": "6.1.0",
    "rollup-plugin-typescript2": "0.36.0",
    "typescript": "5.5.4"
  },
  "repository": {
    "directory": "packages/functions-compat",
    "type": "git",
    "url": "git+https://github.com/firebase/firebase-js-sdk.git"
  },
  "bugs": {
    "url": "https://github.com/firebase/firebase-js-sdk/issues"
  },
  "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/functions-compat --include-dependencies build",
    "build:release": "rollup -c rollup.config.release.js && yarn add-compat-overloads",
    "dev": "rollup -c -w",
    "test": "run-p --npm-path npm lint test:all",
    "test:ci": "node ../../scripts/run_tests_in_ci.js -s test:all",
    "test:all": "run-p --npm-path npm test:browser test:node",
    "test:browser": "karma start",
    "test:browser:debug": "karma start --browsers=Chrome --auto-watch",
    "test:node": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha 'src/{,!(browser)/**/}*.test.ts' --config ../../config/mocharc.node.js",
    "test:emulator": "env FIREBASE_FUNCTIONS_HOST=http://localhost FIREBASE_FUNCTIONS_PORT=5005 run-p --npm-path npm test:node",
    "trusted-type-check": "tsec -p tsconfig.json --noEmit",
    "add-compat-overloads": "ts-node-script ../../scripts/build/create-overloads.ts -i ../functions/dist/functions-public.d.ts -o dist/src/index.d.ts -a -r Functions:types.FirebaseFunctions -r FirebaseApp:FirebaseAppCompat --moduleToEnhance @firebase/functions"
  },
  "typings": "dist/src/index.d.ts",
  "dependencies": {
    "@firebase/component": "0.7.0",
    "@firebase/functions": "0.13.1",
    "@firebase/functions-types": "0.6.3",
    "@firebase/util": "1.13.0",
    "tslib": "^2.1.0"
  },
  "nyc": {
    "extension": [
      ".ts"
    ],
    "reportDir": "./coverage/node"
  },
  "engines": {
    "node": ">=20.0.0"
  }
}