jdbence/firestore-parser

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "firestore-parser",
  "version": "0.9.0",
  "description": "Parse the Firestore REST API endpoint JSON into a useable JS object",
  "main": "./build/index.js",
  "scripts": {
    "test": "jest --coverage",
    "coverage": "jest --env=jsdom --ci --coverage --reporters=default --reporters=jest-junit ./node_modules/jest-junit",
    "start": "webpack --watch --mode development",
    "build": "webpack --mode production"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jdbence/firestore-parser.git"
  },
  "keywords": [
    "JSON",
    "Firebase",
    "Firestore",
    "Rest"
  ],
  "author": "Joshua Bence",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/jdbence/firestore-parser/issues"
  },
  "homepage": "https://github.com/jdbence/firestore-parser#readme",
  "devDependencies": {
    "@babel/cli": "^7.7.7",
    "@babel/core": "^7.7.7",
    "@babel/plugin-proposal-object-rest-spread": "^7.7.7",
    "@babel/preset-env": "^7.7.7",
    "babel-jest": "^24.9.0",
    "babel-loader": "^8.0.6",
    "jest": "^24.9.0",
    "jest-junit": "^10.0.0",
    "regenerator-runtime": "^0.13.3",
    "webpack": "^4.41.5",
    "webpack-cli": "^3.3.10"
  },
  "jest": {
    "testPathIgnorePatterns": [
      "/node_modules/",
      ".c9"
    ],
    "testEnvironment": "node"
  }
}