{
  "name": "@reallyland/polling-observer",
  "version": "0.4.3",
  "description": "A new way of running polling function with observer pattern",
  "keywords": [
    "node",
    "polling",
    "polling-observer",
    "pollingobserver",
    "really",
    "reallyland",
    "typescript"
  ],
  "homepage": "https://github.com/reallyland/polling-observer",
  "repository": {
    "type": "git",
    "url": "git@github.com:reallyland/polling-observer.git"
  },
  "license": "MIT",
  "author": {
    "name": "Rong Sen Ng (motss)",
    "email": "wes.ngrongsen@gmail.com",
    "url": "https://github.com/motss"
  },
  "files": [
    "dist/*.*js.map",
    "dist/*.*js",
    "dist/*.d.ts.map",
    "dist/*.d.ts"
  ],
  "main": "dist/index",
  "module": "dist/index.mjs",
  "typings": "dist/index.d.ts",
  "scripts": {
    "build": "npm run clean && npm run rollup",
    "build:test": "npm run clean && tsc -p ./tsconfig.test.json",
    "clean": "shx rm -rf dist/",
    "demo": "node -r esm ./dist/demo/index.js",
    "jest": "jest --config ./.jestrc.json",
    "lint": "tslint --project tsconfig.json --config tslint.prod.json --format stylish",
    "lint:debug": "tslint --project tsconfig.json --config tslint.json --format stylish",
    "prepublishOnly": "npm run lint && npm run build",
    "rollup": "rollup -c ./rollup.config.js",
    "test": "npm run lint && npm run build:test && npm run jest",
    "ts": "npm run clean && tsc",
    "watch": "npm run ts -- --watch"
  },
  "dependencies": {},
  "devDependencies": {
    "@reallyland/tsconfig": "^1.0.0",
    "@reallyland/tslint-config": "^1.0.0",
    "@types/jest": "^24.0.13",
    "@types/node": "^12.0.2",
    "esm": "^3.2.25",
    "jest": "^24.8.0",
    "rollup": "^1.12.3",
    "rollup-plugin-filesize": "^6.1.0",
    "rollup-plugin-terser": "^5.0.0",
    "rollup-plugin-tslint": "^0.2.2",
    "rollup-plugin-typescript2": "^0.21.1",
    "shx": "^0.3.2",
    "tslint": "^5.16.0",
    "typescript": "^3.4.5"
  },
  "engines": {
    "node": ">= 8.16.0",
    "npm": ">= 6.4.1"
  },
  "publishConfig": {
    "access": "public"
  }
}
