UNPKG

firebase-apparatus

Version:

Lightweight implementation of firebase-tools as a Node module

55 lines (54 loc) 1.47 kB
{ "name": "firebase-apparatus", "version": "0.2.0", "description": "Lightweight implementation of firebase-tools as a Node module", "main": "dist/cjs/index.js", "module": "dist/es/index.js", "repository": { "type": "git", "url": "https://github.com/GitbookIO/firebase-apparatus.git" }, "bugs": { "url": "https://github.com/GitbookIO/firebase-apparatus/issues" }, "author": "jpreynat <johan.preynat@gmail.com>", "license": "Apache-2.0", "devDependencies": { "@types/axios": "^0.14.0", "@types/jest": "^24.0.18", "@types/node": "^12.7.2", "jest": "^24.9.0", "prettier": "^1.14.3", "ts-jest": "^24.0.2", "tslint": "^5.19.0", "tslint-config-gitbook": "^1.0.2", "typescript": "^3.5.3" }, "scripts": { "prepublish": "yarn run test:all && yarn run build", "build": "rm -rf ./dist && yarn run build:es && yarn run build:cjs", "build:cjs": "tsc --build tsconfig.json", "build:es": "tsc --build tsconfig.es.json", "test:lint": "tslint ./src/**/*.ts", "test:types": "tsc --noEmit", "test": "jest", "test:all": "yarn run test && yarn run test:lint && yarn run test:types" }, "dependencies": { "axios": "^0.17.1", "babel-runtime": "^6.26.0" }, "jest": { "preset": "ts-jest", "testEnvironment": "node", "rootDir": "./src" }, "keywords": [ "node", "firebase", "tools", "apparatus", "module" ], "sideEffects": false }