{
  "name": "unobservable",
  "version": "1.1.0",
  "description": "An incredibly lightweight version of TC39 Observable",
  "license": "MIT",
  "files": [
    "*.mjs",
    "*.ts",
    "*.js"
  ],
  "main": "all.js",
  "module": "all.mjs",
  "repository": "keithamus/mini-observable",
  "scripts": {
    "prepublish": "yarn format && yarn lint & yarn test",
    "prepublishOnly": "yarn check-size",
    "prepare": "yarn tsc -m es6 && renamer --find js --replace mjs --force *.js && tsc",
    "check-size": "yarn terser -cm toplevel --ecma 8 observable.mjs | gzip -c | wc -c",
    "lint": "yarn eslint *.ts test/*.ts",
    "pretest": "yarn tsc -p test/tsconfig.json",
    "test": "yarn mocha test/*.js",
    "format:base": "yarn prettier --arrow-parens=avoid --parser=typescript --no-semi --single-quote --trailing-comma=none",
    "format": "yarn format:base --write **/*.ts",
    "format:check": "yarn format:base -c **/*.ts",
    "doc:js": "jsdoc -c ./jsdoc.conf.json *.js",
    "doc:ts": "tsdoc *.ts"
  },
  "devDependencies": {
    "@types/chai": "^4.1.7",
    "@types/mocha": "^5.2.7",
    "@types/node": "^12.0.4",
    "@typescript-eslint/eslint-plugin": "^1.9.0",
    "@typescript-eslint/parser": "^1.9.0",
    "chai": "^4.2.0",
    "es-observable-tests": "^0.3.0",
    "eslint": "^5.16.0",
    "eslint-config-prettier": "^4.3.0",
    "mocha": "^6.1.4",
    "prettier": "^1.17.1",
    "renamer": "^1.1.1",
    "terser": "^4.0.0",
    "typescript": "^3.5.1"
  },
  "dependencies": {}
}
