UNPKG

firebase-app-distribution

Version:
54 lines 1.32 kB
{ "name": "firebase-app-distribution", "version": "0.1.0", "description": "A library that uses Firebase App Distribution APIs.", "main": "lib/index.js", "module": "lib/index.mjs", "types": "lib/index.d.ts", "repository": { "type": "git", "url": "https://github.com/amalej/firebase-app-distribution-nodejs" }, "scripts": { "build": "tsup", "build:watch": "tsup --watch", "test": "jest --coverage --verbose", "test:index": "jest -- index.test.ts", "test:testers": "jest -- testers.test.ts", "test:groups": "jest -- groups.test.ts", "test:utils": "jest -- utils.test.ts" }, "files": [ "lib" ], "exports": { ".": { "import": { "types": "./lib/index.d.mts", "default": "./lib/index.mjs" }, "require": { "types": "./lib/index.d.ts", "default": "./lib/index.js" } } }, "keywords": [ "Firebase", "App", "Distribution" ], "author": "Alejandro Marco Alejandre", "license": "ISC", "devDependencies": { "@types/jest": "^29.5.3", "@types/node": "^20.4.4", "jest": "^29.6.1", "ts-jest": "^29.1.1", "tsup": "^8.5.1", "typescript": "^5.1.6" }, "dependencies": { "google-auth-library": "^9.0.0" } }