weavedev/store

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@weavedev/store",
  "version": "1.1.0",
  "description": "Opinionated drop-in redux store with redux-saga",
  "main": "dist/store.js",
  "types": "dist/store.d.ts",
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "ci:test": "npm-run-all -l build test:*",
    "clean": "del-cli dist",
    "docs": "typedoc && touch docs/.nojekyll",
    "prepare": "npm-run-all -l test build docs",
    "test": "npm-run-all build test:*",
    "test:jest": "npm-run-all test:jest:*",
    "test:jest:browser": "NODE_ENV=test jest",
    "test:jest:nodejs": "NODE_ENV=test jest --env=node",
    "test:lint": "echo \"skipping: tslint -p tsconfig.json -c tslint.json\""
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/weavedev/store.git"
  },
  "keywords": [
    "redux",
    "store",
    "redux-saga",
    "logging"
  ],
  "author": {
    "name": "Paul Gerarts",
    "email": "dev@gerarts.nl"
  },
  "contributors": [
    {
      "name": "Paul Gerarts",
      "email": "dev@gerarts.nl"
    }
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/weavedev/store/issues"
  },
  "homepage": "https://github.com/weavedev/store#readme",
  "devDependencies": {
    "@types/jest": "^29.0.3",
    "@types/redux-logger": "^3.0.9",
    "@webcomponents/webcomponentsjs": "^2.6.0",
    "babel-core": "^6.26.3",
    "babel-jest": "^29.0.3",
    "babel-plugin-transform-runtime": "^6.23.0",
    "babel-preset-env": "^1.7.0",
    "del-cli": "^5.0.0",
    "jest": "^29.0.3",
    "npm-run-all": "^4.1.5",
    "redux": "^4.2.0",
    "redux-logger": "^3.0.6",
    "redux-saga": "^1.2.1",
    "regenerator-runtime": "^0.13.9",
    "ts-jest": "^29.0.1",
    "ts-node": "^10.9.1",
    "typedoc": "^0.23.15",
    "typescript": "^4.8.3"
  },
  "jest": {
    "collectCoverage": true,
    "collectCoverageFrom": [
      "**/*.{ts,tsx,js,jsx}",
      "!**/node_modules/**",
      "!**/*.test.{ts,tsx,js,jsx}"
    ],
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx",
      "json"
    ],
    "roots": [
      "<rootDir>/lib"
    ],
    "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    }
  }
}