{
  "name": "undux-fb",
  "version": "5.0.1",
  "description": "Facebook-specific wrapper for Undux",
  "main": "dist/src/index.js",
  "main:esnext": "dist.esnext/index.js",
  "typings": "dist/src/index.d.ts",
  "author": "Boris Cherny <boris@performancejs.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/bcherny/undux-fb.git"
  },
  "bugs": {
    "url": "https://github.com/bcherny/undux-fb/issues"
  },
  "homepage": "https://github.com/bcherny/undux-fb#readme",
  "scripts": {
    "build": "npm run clean && npm run lint && tsc -d && npm run build:esnext && flow focus-check src/index.js.flow && cp src/index.js.flow dist/src/index.js.flow",
    "build:esnext": "tsc -d -p ./tsconfig.esnext.json",
    "clean": "shx rm -rf dist dist.esnext",
    "format": "prettier --write src/**/* test/**/*",
    "lint": "tslint -p tsconfig.json src/*.ts src/*.tsx src/plugins/*.ts",
    "profile:filesize": "webpack --config ./perf/filesize/webpack.config.js -p && cat ./perf/filesize/bundle.js | gzip | wc -c",
    "prepublishOnly": "npm test",
    "pretest": "npm run build",
    "tdd": "concurrently -k \"tsc -w\" \"ava -w\"",
    "test": "ava && flow focus-check ./test/test.flow.js && ./test/bad-cases/run.sh"
  },
  "dependencies": {
    "rxjs-observable": "^0.0.7"
  },
  "devDependencies": {
    "@types/jsdom": "^12.2.3",
    "@types/react": "^16.8.6",
    "@types/react-dom": "^16.8.2",
    "ava": "^1.2.1",
    "awesome-typescript-loader": "^5.2.1",
    "concurrently": "^4.1.0",
    "flow-bin": "^0.113.0",
    "immutable": "^4.0.0-rc.12",
    "jsdom": "^13.2.0",
    "jsdom-global": "^3.0.2",
    "prettier": "^1.16.4",
    "react": "^16.8.3",
    "react-dom": "^16.8.3",
    "rxjs": "^6.4.0",
    "shx": "^0.3.2",
    "tslint": "^5.13.1",
    "tslint-react": "^3.6.0",
    "typescript": "^3.3.3333",
    "uglifyjs-webpack-plugin": "^2.1.2",
    "webpack": "^4.29.6",
    "webpack-cli": "^3.2.3"
  },
  "peerDependencies": {
    "react": ">=16.0.0"
  },
  "keywords": [
    "redux",
    "flux",
    "rx",
    "reactive",
    "simple",
    "model",
    "state",
    "store"
  ],
  "ava": {
    "files": [
      "./dist/test/test.js"
    ],
    "sources": [
      "./dist/src/*.js"
    ],
    "verbose": true
  },
  "prettier": {
    "semi": false,
    "singleQuote": true
  }
}
