{
  "name": "hearken",
  "version": "4.1.2",
  "description": "A self-adjusting countdown timer capable of carrying out tasks. Hearken tasks can be added at any point during operation through a simple API and they can be set to run just once or on an interval.",
  "main": "index.js",
  "module": "hearken.js",
  "scripts": {
    "type-check": "tsc --noEmit",
    "type-check:watch": "npm run type-check -- --watch",
    "build": "npm run build:types && npm run build:js",
    "build:types": "tsc --emitDeclarationOnly",
    "build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
    "test": "node_modules/.bin/mocha",
    "bundle": "rollup -c",
    "bundle:watch": "rollup -c --watch"
  },
  "types": "lib/index.d.ts",
  "keywords": [
    "time",
    "task",
    "tasks",
    "clock",
    "timer",
    "countdown",
    "events"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/robertcorponoi/hearken"
  },
  "author": "Robert Corponoi",
  "license": "MIT",
  "devDependencies": {
    "@babel/cli": "^7.8.4",
    "@babel/core": "^7.9.0",
    "@babel/plugin-proposal-class-properties": "^7.8.3",
    "@babel/plugin-proposal-object-rest-spread": "^7.9.5",
    "@babel/preset-env": "^7.9.5",
    "@babel/preset-typescript": "^7.9.0",
    "chai": "^4.2.0",
    "mocha": "^7.1.1",
    "rollup": "^2.6.1",
    "rollup-plugin-babel": "^4.4.0",
    "rollup-plugin-commonjs": "^10.1.0",
    "rollup-plugin-node-resolve": "^5.2.0",
    "sinon": "^9.0.2",
    "typescript": "^3.8.3"
  },
  "dependencies": {
    "hypergiant": "^3.0.5"
  }
}
