vshushkov/redux-models

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "redux-models",
  "version": "1.3.1",
  "description": "Models layer for Redux",
  "main": "build/index.js",
  "files": [
    "build",
    "src",
    "test"
  ],
  "scripts": {
    "build": "rimraf build && babel src --out-dir build",
    "test": "jest --coverage --verbose=false",
    "prepublish": "npm test && npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vshushkov/redux-models.git"
  },
  "keywords": [
    "redux",
    "models",
    "redux-models",
    "rest",
    "api"
  ],
  "author": "Vladimir Shushkov <vladimir@shushkov.ru>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/vshushkov/redux-models/issues"
  },
  "homepage": "https://github.com/vshushkov/redux-models#readme",
  "dependencies": {
    "lodash": "^4.17.20"
  },
  "peerDependencies": {
    "redux": "*"
  },
  "devDependencies": {
    "@babel/cli": "^7.12.8",
    "@babel/core": "^7.4.5",
    "@babel/preset-env": "^7.4.5",
    "expect": "^24.8.0",
    "jest-cli": "^26.6.3",
    "redux": "^4.0.1",
    "redux-mock-store": "^1.5.3",
    "redux-thunk": "^2.3.0",
    "rimraf": "^2.5.4",
    "sinon": "^4.5.0"
  },
  "jest": {
    "coverageReporters": [
      "html",
      "json",
      "lcov",
      "text"
    ]
  }
}