{
  "name": "redux-enterprise",
  "version": "0.0.9",
  "description": "Library for organizing and scaling redux based projects",
  "main": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "scripts": {
    "clean": "rimraf lib",
    "test": "jest",
    "test:watch": "npm test -- --watch",
    "test:examples": "node examples/",
    "lint": "tslint -c tslint.json 'src/**/*.ts'",
    "build": "tsc",
    "prepublish": "npm run clean && npm run lint && npm run test && npm run build"
  },
  "files": [
    "lib",
    "src"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/redux-enterprise/redux-enterprise.git"
  },
  "keywords": [
    "redux",
    "react",
    "scale",
    "scaling",
    "architecture",
    "typescript",
    "reducers",
    "reselect",
    "redux-saga",
    "sagas",
    "saga"
  ],
  "author": "Twitter: @alexfreska",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/redux-enterprise/redux-enterprise/issues"
  },
  "homepage": "https://github.com/redux-enterprise/redux-enterprise#readme",
  "devDependencies": {
    "@types/jest": "^22.2.3",
    "@types/lodash": "^4.14.109",
    "@types/node": "^10.1.2",
    "@types/redux-actions": "^2.3.0",
    "@types/redux-logger": "^3.0.6",
    "jest": "^23.0.0",
    "prettier": "1.12.1",
    "redux-logger": "^3.0.6",
    "rimraf": "^2.5.4",
    "ts-jest": "^22.4.6",
    "tslint": "^5.10.0",
    "tslint-config-prettier": "^1.13.0",
    "typescript": "^3.0.1"
  },
  "dependencies": {
    "lodash": "^4.17.5",
    "redux": "^3.7.2",
    "redux-actions": "^2.3.0"
  },
  "jest": {
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "testURL": "http://localhost",
    "globals": {
      "ts-jest": {
        "enableTsDiagnostics": true
      }
    },
    "testRegex": "(test.tsx?)$",
    "moduleDirectories": [
      "node_modules",
      "src"
    ],
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx",
      "json",
      "node"
    ]
  }
}
