GSI - Employe Self Service Mobile
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
2.7 KiB

2 months ago
  1. {
  2. "name": "@firebase/storage-compat",
  3. "version": "0.2.1",
  4. "description": "The Firebase Firestore compatibility package",
  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. "types": "./dist/src/index.d.ts",
  13. "require": "./dist/index.cjs.js",
  14. "esm5": "./dist/esm/index.esm5.js",
  15. "default": "./dist/esm/index.esm2017.js"
  16. },
  17. "./package.json": "./package.json"
  18. },
  19. "license": "Apache-2.0",
  20. "typings": "./dist/src/index.d.ts",
  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 rollup.config.js",
  25. "build:deps": "lerna run --scope @firebase/storage-compat --include-dependencies build",
  26. "dev": "rollup -c -w",
  27. "test": "run-p test:browser test:node lint",
  28. "test:ci": "node ../../scripts/run_tests_in_ci.js -s test:browser test:node",
  29. "test:browser:unit": "karma start --single-run --unit",
  30. "test:browser:integration": "karma start --single-run --integration",
  31. "test:browser": "karma start --single-run",
  32. "test:node": "TS_NODE_FILES=true TS_NODE_CACHE=NO TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha 'test/{,!(browser)/**/}*.test.ts' --file src/index.ts --config ../../config/mocharc.node.js",
  33. "test:debug": "karma start --browser=Chrome",
  34. "prettier": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
  35. "add-compat-overloads": "ts-node-script ../../scripts/build/create-overloads.ts -i ../storage/dist/storage-public.d.ts -o dist/src/index.d.ts -a -r FirebaseStorage:types.FirebaseStorage -r StorageReference:types.Reference -r FirebaseApp:FirebaseAppCompat --moduleToEnhance @firebase/storage"
  36. },
  37. "peerDependencies": {
  38. "@firebase/app-compat": "0.x"
  39. },
  40. "dependencies": {
  41. "@firebase/storage": "0.10.1",
  42. "@firebase/storage-types": "0.7.0",
  43. "@firebase/util": "1.9.0",
  44. "@firebase/component": "0.6.1",
  45. "tslib": "^2.1.0"
  46. },
  47. "devDependencies": {
  48. "@firebase/app-compat": "0.2.1",
  49. "@firebase/auth-compat": "0.3.1",
  50. "rollup": "2.79.1",
  51. "@rollup/plugin-json": "4.1.0",
  52. "rollup-plugin-typescript2": "0.31.2",
  53. "typescript": "4.7.4"
  54. },
  55. "files": [
  56. "dist"
  57. ],
  58. "repository": {
  59. "directory": "packages/storage-compat",
  60. "type": "git",
  61. "url": "https://github.com/firebase/firebase-js-sdk.git"
  62. },
  63. "bugs": {
  64. "url": "https://github.com/firebase/firebase-js-sdk/issues"
  65. }
  66. }