{
  "name": "ng2-redux-select",
  "version": "0.0.3",
  "description": "Typescript Select Decorator for RxJS-based State Containers",
  "main": "./lib/index.js",
  "scripts": {
    "build": "rimraf ./lib; tsc",
    "test": "rimraf coverage && npm run lint && npm run cover",
    "mocha": "mocha --compilers ts:ts-node/register src/**/*.spec.ts",
    "lint": "tslint 'src/**/*.ts' 'examples/counter/**.ts --exclude 'examples/counter/node_modules",
    "cover": "NODE_ENV=test nyc npm run mocha"
  },
  "typings": "./lib/index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/SethDavenport/ng2-redux-select.git"
  },
  "keywords": [
    "redux",
    "ngrx",
    "ng2-redux",
    "rxjs",
    "angular2"
  ],
  "author": "Seth Davenport <seth.e.davenport@gmail.com> (http://github.com/SethDavenport)",
  "contributors": [
    {
      "name": "Evan Schultz",
      "email": "evan@rangle.io",
      "url": "https://github.com/e-schultz"
    },
    {
      "name": "Cosmin Ronnin",
      "url": "https://github.com/kosz"
    }
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/SethDavenport/select/issues"
  },
  "homepage": "https://github.com/SethDavenport/ng2-redux-select#readme",
  "devDependencies": {
    "@angular/core": "2.0.0-rc.6",
    "@types/chai": "^3.4.32",
    "@types/core-js": "^0.9.32",
    "@types/mocha": "^2.2.31",
    "@types/node": "^6.0.36",
    "@types/sinon": "^1.16.29",
    "awesome-typescript-loader": "^2.2.1",
    "chai": "^3.5.0",
    "immutable": "^3.8.1",
    "mocha": "^2.5.3",
    "nyc": "^8.1.0",
    "redux": "^3.4.0",
    "reflect-metadata": "0.1.3",
    "rimraf": "^2.5.2",
    "rxjs": "5.0.0-beta.11",
    "sinon": "^1.17.5",
    "ts-node": "^1.3.0",
    "tslint": "^3.11.0",
    "typescript": "^2.0.0",
    "zone.js": "^0.6.15"
  },
  "peerDependencies": {
    "@angular/core": "2.0.0-rc.3 || ^2.0.0-rc.4 || ^2.0.0-rc.5 || ^2.0.0-rc.6"
  },
  "nyc": {
    "exclude": [
      "examples",
      "node_modules",
      "**/*.spec.ts",
      "lib",
      "docs",
      "coverage"
    ],
    "extension": [
      ".ts"
    ],
    "require": [
      "ts-node/register"
    ],
    "reporter": [
      "lcov",
      "text"
    ],
    "all": true,
    "check-coverage": true,
    "lines": 80,
    "branches": 80,
    "functions": 80,
    "statements": 80
  }
}
