stefan-prokop-cz/firebless

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "firebless",
  "description": "Firebless allows you to create repositories from Firestore collections",
  "version": "0.2.1",
  "author": "Stefan Prokop <sprokop1010@seznam.cz>",
  "main": "./dist/main.js",
  "files": [
    "dist/*"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/stefan-prokop-cz/firebless"
  },
  "license": "MIT",
  "keywords": [
    "firestore",
    "database",
    "orm"
  ],
  "scripts": {
    "build": "tsc",
    "test": "NODE_PATH=src jest --runInBand",
    "test:coverage": "npm run test -- --collectCoverage",
    "lint": "tslint -t codeFrame -p .",
    "prepare": "npm run build",
    "docs": "typedoc --options typedoc.json src/lib/*.ts"
  },
  "dependencies": {
    "@google-cloud/firestore": "^4.2.0"
  },
  "devDependencies": {
    "@types/jest": "^26.0.13",
    "jest": "^26.4.2",
    "mock-cloud-firestore": "^0.12.0",
    "ts-jest": "^26.3.0",
    "tslint-config-ackee": "^0.3.0",
    "typedoc": "^0.21.4",
    "typescript": "^4.0.2"
  }
}