redux-typed-actions
Version: 
An approach to type Redux actions and their payload and statically type checking them in Typescript
44 lines (43 loc) • 1.2 kB
JSON
{
  "name": "redux-typed-actions",
  "description": "An approach to type Redux actions and their payload and statically type checking them in Typescript",
  "version": "0.1.5",
  "license": "MIT",
  "main": "lib/bundles/redux-typed-actions.umd.js",
  "module": "lib/redux-typed-actions.es5.js",
  "es2015": "lib/redux-typed-actions.js",
  "typings": "lib/redux-typed-actions.d.ts",
  "scripts": {
    "prepublishOnly": "npm run lint && npm run test && npm run build",
    "lint": "tslint -p tsconfig.json",
    "pretest": "tsc -p src",
    "test": "mocha --reporter spec --colors \"build/**/*.spec.js\"",
    "build": "tsb"
  },
  "keywords": [
    "typescript",
    "redux",
    "action",
    "type",
    "type-checking"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/aminpaks/redux-typed-actions"
  },
  "bugs": {
    "url": "https://github.com/aminpaks/redux-typed-actions/issues"
  },
  "dependencies": {
    "typescript": ">=2.3.0"
  },
  "devDependencies": {
    "@types/chai": "^4.0.4",
    "@types/mocha": "^2.2.43",
    "@types/node": "^8.0.46",
    "chai": "^4.1.2",
    "mocha": "^4.0.1",
    "tslint": "^5.8.0",
    "typescript-library-bundler": "^0.1.6"
  }
}