{
  "name": "typed-rx-emitter",
  "version": "1.2.0",
  "description": "Typesafe Rx-based emitter",
  "main": "./dist/src/index.js",
  "main:esnext": "./dist.esnext/index.js",
  "typings": "./dist/src/index.d.ts",
  "scripts": {
    "build": "npm run clean && npm run lint && tsc -d && tsc -d -p tsconfig.esnext.json",
    "clean": "shx rm -rf dist dist.esnext",
    "lint": "tslint -p tsconfig.json src/*.ts",
    "watch": "tsc -w",
    "prepublishOnly": "npm test",
    "tdd": "tsc -w & ava -w dist/test/test.js",
    "test": "npm run build && ava -v dist/test/test.js && flow check && npm run test:minify",
    "test:minify": "webpack --config ./test-minify/webpack.config.js -p && cat ./test-minify/bundle.js | gzip | wc -c"
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/bcherny/typed-rx-emitter.git"
  },
  "keywords": [
    "react",
    "reactive",
    "event",
    "message",
    "redux",
    "flux",
    "cqrs",
    "rx",
    "rxjs",
    "did",
    "should",
    "collection",
    "model",
    "better"
  ],
  "author": "Boris Cherny <boris@performancejs.com> (http://performancejs.com/)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/bcherny/typed-rx-emitter/issues"
  },
  "homepage": "https://github.com/bcherny/typed-rx-emitter#readme",
  "devDependencies": {
    "ava": "^0.25.0",
    "awesome-typescript-loader": "^5.2.0",
    "flow-bin": "^0.78.0",
    "rxjs": "^6.2.2",
    "shx": "^0.3.2",
    "tslint": "^5.11.0",
    "typescript": "^3.0.1",
    "uglifyjs-webpack-plugin": "^1.2.7",
    "webpack": "^4.16.5",
    "webpack-cli": "^3.1.0"
  },
  "dependencies": {},
  "peerDependencies": {
    "rxjs": ">=5.0.0"
  }
}