sergiodxa/redux-duck

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "redux-duck",
  "version": "1.2.0",
  "description": "Helper function to create Redux modules using the ducks-modular-redux proposal.",
  "main": "dist/index.js",
  "module": "dist/test-lib.esm.js",
  "typings": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "start": "tsdx watch",
    "build": "tsdx build",
    "test": "tsdx test",
    "lint": "tsdx lint",
    "prepublishOnly": "yarn build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sergiodxa/redux-duck.git"
  },
  "keywords": [
    "redux",
    "duck",
    "module",
    "helper"
  ],
  "author": {
    "url": "https://sergiodxa.com",
    "name": "Sergio Daniel Xalambrí",
    "email": "hello@sergiodxa.com"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/sergiodxa/redux-duck/issues"
  },
  "homepage": "https://github.com/sergiodxa/redux-duck/",
  "devDependencies": {
    "@types/jest": "^27.0.0",
    "husky": "^7.0.1",
    "tsdx": "^0.14.0",
    "tslib": "^2.0.0",
    "typescript": "^4.0.2"
  },
  "husky": {
    "hooks": {
      "pre-commit": "tsdx lint"
    }
  },
  "prettier": {
    "printWidth": 80,
    "semi": true,
    "singleQuote": true,
    "trailingComma": "es5"
  }
}