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.

71 lines
2.7 KiB

2 months ago
  1. {
  2. "name": "@firebase/storage",
  3. "version": "0.10.1",
  4. "description": "",
  5. "author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
  6. "main": "dist/index.node.cjs.js",
  7. "module": "dist/index.esm2017.js",
  8. "browser": "dist/index.esm2017.js",
  9. "esm5": "dist/index.esm5.js",
  10. "exports": {
  11. ".": {
  12. "types": "./dist/storage-public.d.ts",
  13. "node": {
  14. "import": "./dist/node-esm/index.node.esm.js",
  15. "default": "./dist/index.node.cjs.js"
  16. },
  17. "esm5": "./dist/index.esm5.js",
  18. "default": "./dist/index.esm2017.js"
  19. },
  20. "./package.json": "./package.json"
  21. },
  22. "files": [
  23. "dist"
  24. ],
  25. "scripts": {
  26. "bundle": "rollup -c",
  27. "lint": "eslint -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
  28. "lint:fix": "eslint --fix -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'",
  29. "build": "rollup -c rollup.config.js && yarn api-report",
  30. "build:deps": "lerna run --scope @firebase/storage --include-dependencies build",
  31. "dev": "rollup -c -w",
  32. "test": "run-p test:browser test:node lint",
  33. "test:ci": "node ../../scripts/run_tests_in_ci.js -s test:browser test:node",
  34. "test:browser:unit": "karma start --single-run --unit",
  35. "test:browser:integration": "karma start --single-run --integration",
  36. "test:browser": "karma start --single-run",
  37. "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.node.ts --config ../../config/mocharc.node.js",
  38. "test:debug": "karma start --browser=Chrome",
  39. "prettier": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
  40. "api-report": "api-extractor run --local --verbose && ts-node-script ../../repo-scripts/prune-dts/prune-dts.ts --input dist/storage-public.d.ts --output dist/storage-public.d.ts",
  41. "typings:public": "node ../../scripts/build/use_typings.js ./dist/storage-public.d.ts"
  42. },
  43. "license": "Apache-2.0",
  44. "dependencies": {
  45. "@firebase/util": "1.9.0",
  46. "@firebase/component": "0.6.1",
  47. "node-fetch": "2.6.7",
  48. "tslib": "^2.1.0"
  49. },
  50. "peerDependencies": {
  51. "@firebase/app": "0.x"
  52. },
  53. "devDependencies": {
  54. "@firebase/app": "0.9.1",
  55. "@firebase/auth": "0.21.1",
  56. "rollup": "2.79.1",
  57. "@rollup/plugin-alias": "3.1.9",
  58. "@rollup/plugin-json": "4.1.0",
  59. "rollup-plugin-typescript2": "0.31.2",
  60. "typescript": "4.7.4"
  61. },
  62. "repository": {
  63. "directory": "packages/storage",
  64. "type": "git",
  65. "url": "https://github.com/firebase/firebase-js-sdk.git"
  66. },
  67. "bugs": {
  68. "url": "https://github.com/firebase/firebase-js-sdk/issues"
  69. },
  70. "typings": "./dist/storage-public.d.ts"
  71. }