{
  "author": "Nicholas Jamieson <nicholas@cartant.com>",
  "bugs": {
    "url": "https://github.com/cartant/firebase-key/issues"
  },
  "dependencies": {},
  "description": "Firebase key utility and encoding/decoding functions",
  "devDependencies": {
    "@types/chai": "^4.0.0",
    "@types/mocha": "^5.0.0",
    "@types/node": "^11.0.0",
    "chai": "^4.0.0",
    "eslint": "^5.0.0",
    "karma": "^4.0.0",
    "karma-chrome-launcher": "^2.0.0",
    "karma-mocha": "^1.3.0",
    "karma-spec-reporter": "^0.0.32",
    "mkdirp": "^0.5.1",
    "mocha": "^6.0.0",
    "puppeteer": "^1.0.0",
    "rimraf": "^2.6.1",
    "rollup": "^1.0.0",
    "tslint": "^5.1.0",
    "typescript": "~3.4.1",
    "uglify-js": "^3.0.10"
  },
  "es2015": "./dist/esm2015/index.js",
  "homepage": "https://github.com/cartant/firebase-key",
  "keywords": [
    "firebase",
    "key",
    "push",
    "pushid",
    "pushkey",
    "timestamp"
  ],
  "license": "MIT",
  "main": "./dist/index.js",
  "module": "./dist/esm5/index.js",
  "name": "firebase-key",
  "optionalDependencies": {},
  "peerDependencies": {},
  "private": false,
  "repository": {
    "type": "git",
    "url": "https://github.com/cartant/firebase-key.git"
  },
  "scripts": {
    "dist": "yarn run dist:build && yarn run dist:uglify",
    "dist:build": "yarn run dist:clean && yarn run dist:build:cjs && yarn run dist:build:esm2015 && yarn run dist:build:esm5 && rollup -c rollup-config.js",
    "dist:build:cjs": "tsc -p tsconfig-dist-cjs.json",
    "dist:build:esm2015": "tsc -p tsconfig-dist-esm2015.json",
    "dist:build:esm5": "tsc -p tsconfig-dist-esm5.json",
    "dist:clean": "rimraf dist && rimraf bundles/firebase-key.* && mkdirp bundles",
    "dist:uglify": "uglifyjs -c --comments /license/ -m -o bundles/firebase-key.min.umd.js bundles/firebase-key.umd.js",
    "lint": "tslint --project tsconfig.json source/**/*.ts",
    "prepublishOnly": "yarn run test && yarn run dist",
    "test": "yarn run lint && yarn run test:build && karma start",
    "test:build": "yarn run test:clean && tsc -p tsconfig.json && rollup -c rollup-config-test.js",
    "test:clean": "rimraf build && rimraf bundles/firebase-key-test.* && mkdirp bundles"
  },
  "sideEffects": false,
  "types": "./dist/index.d.ts",
  "unpkg": "./bundles/firebase-key.min.umd.js",
  "version": "2.0.2"
}
