aacanakin/resource-store-redux

View on GitHub
packages/resource-store-redux-thunk/package.json

Summary

Maintainability
Test Coverage
{
  "name": "resource-store-redux-thunk",
  "version": "0.4.7",
  "description": "Thunk middleware for resource-store-redux to map actions with async resources",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "build": "webpack --config webpack.prod.ts --progress",
    "build:dev": "webpack --config webpack.dev.ts --progress",
    "watch": "webpack --config webpack.dev.ts --progress --watch",
    "test": "jest",
    "test:coverage": "jest --coverage",
    "analyze": "source-map-explorer dist/index.js",
    "lint": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}'",
    "lint:ci": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}' --quiet"
  },
  "author": "Aras Can Akin",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/aacanakin/resource-store-redux.git"
  },
  "bugs": {
    "url": "https://github.com/aacanakin/resource-store-redux/issues"
  },
  "devDependencies": {
    "@types/jest": "^24.0.18",
    "@types/node": "^12.0.8",
    "@types/react-redux": "^7.1.1",
    "@types/redux-mock-store": "^1.0.1",
    "@types/webpack-merge": "^4.1.5",
    "@typescript-eslint/eslint-plugin": "^1.12.0",
    "@typescript-eslint/parser": "^1.12.0",
    "clean-webpack-plugin": "^3.0.0",
    "eslint": "^6.0.1",
    "eslint-config-airbnb-base": "^13.1.0",
    "eslint-config-prettier": "^6.0.0",
    "eslint-plugin-import": "^2.14.0",
    "eslint-plugin-prettier": "^3.1.0",
    "jest": "^24.9.0",
    "prettier": "^1.18.2",
    "react-redux": "^7.1.0",
    "redux": "^4.0.3",
    "redux-mock-store": "^1.5.3",
    "redux-thunk": "^2.3.0",
    "resource-store-redux": "^0.4.7",
    "source-map-explorer": "^1.6.0",
    "ts-jest": "^24.1.0",
    "ts-loader": "^5.3.3",
    "ts-node": "^8.2.0",
    "typescript": "^3.2.2",
    "webpack": "^4.28.1",
    "webpack-cli": "^3.2.1",
    "webpack-merge": "^4.2.1"
  },
  "peerDependencies": {
    "react-redux": "^7.1.0",
    "redux": "^4.0.3",
    "redux-thunk": "^2.3.0",
    "resource-store-redux": "*"
  },
  "jest": {
    "roots": [
      "<rootDir>"
    ],
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "moduleFileExtensions": [
      "ts",
      "js"
    ],
    "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(ts|tsx)?$",
    "testPathIgnorePatterns": [
      "/node_modules/",
      "/dist/"
    ],
    "collectCoverageFrom": [
      "**/*.{js,jsx,ts}",
      "!**/node_modules/**",
      "!**/dist/**",
      "!**/coverage/**",
      "!**/webpack.*.ts",
      "!**/*.eslintrc.js"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 100,
        "functions": 100,
        "lines": 100,
        "statements": 100
      }
    }
  }
}