{
  "name": "ts-redux-actions",
  "version": "1.0.0-rc.0",
  "description": "Typesafe Redux Action Creators for TypeScript",
  "author": "Piotr Witek <piotrek.witek@gmail.com> (http://piotrwitek.github.io)",
  "repository": "https://github.com/piotrwitek/ts-redux-actions",
  "homepage": "https://github.com/piotrwitek/ts-redux-actions",
  "license": "MIT",
  "types": "es5-commonjs/index.d.ts",
  "main": "es5-commonjs/index.js",
  "module": "es5-module/index.js",
  "jsnext:main": "jsnext/index.js",
  "engines": {
    "node": ">= 4"
  },
  "scripts": {
    "reinstall": "rm -rf node_modules/ && yarn install",
    "clean": "rm -rf es5-commonjs/ es5-module/ jsnext/",
    "prepublishOnly": "npm run clean && npm run reinstall && npm run check && npm run test && npm run build",
    "check": "npm run lint & npm run tsc",
    "lint": "tslint --project './tsconfig.json'",
    "tsc": "tsc -p . --noEmit",
    "tsc:watch": "tsc -p . --noEmit -w",
    "test": "jest --config jest.config.json ./src",
    "test:watch": "jest --config jest.config.json ./src --watch",
    "build": "npm run build:commonjs & npm run build:module & npm run build:jsnext",
    "build:commonjs": "rm -rf es5-commonjs/ && tsc -p . --outDir es5-commonjs/",
    "build:module": "rm -rf es5-module/ && tsc -p . --outDir es5-module/ -m 'ES2015'",
    "build:jsnext": "rm -rf jsnext/ && tsc -p . --outDir jsnext/ -t 'ES2015'"
  },
  "dependencies": {},
  "devDependencies": {
    "@types/jest": "21.1.6",
    "@types/node": "6.0",
    "jest-cli": "21.2.1",
    "redux": "^3.7.2",
    "ts-jest": "21.2.2",
    "ts-node": "3.3.0",
    "tslib": "1.8.0",
    "tslint": "5.8.0",
    "typescript": "2.6.1"
  },
  "keywords": [
    "redux-actions",
    "redux",
    "typescript",
    "static-typing",
    "action-creator",
    "javscript"
  ]
}
