crishellco/vue-call-store

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@crishellco/vue-call-store",
  "version": "0.0.0-semantically-released",
  "author": "Chris Mitchell (@crishellco)",
  "description": "A Vuex module and Vue mixin to track the status of all API calls",
  "main": "./dist/vue-call-store.umd.js",
  "module": "./dist/vue-call-store.es.js",
  "exports": {
    ".": {
      "import": "./dist/vue-call-store.es.js",
      "require": "./dist/vue-call-store.umd.js"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "test": "npm-run-all --print-label --parallel lint:* --parallel test:*",
    "test:unit": "jest",
    "lint:js": "eslint --ext .js,.vue .",
    "lint:js:fix": "yarn lint:js --fix",
    "build": "vite build --mode prod",
    "build:preprod": "vite build --mode preprod",
    "release": "semantic-release",
    "demo": "cd demo && yarn && yarn serve"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/crishellco/vue-call-store.git"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/crishellco/vue-call-store/issues"
  },
  "homepage": "https://crishellco.github.io/vue-call-store/",
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@babel/core": "7.24.5",
    "@babel/plugin-proposal-class-properties": "7.18.6",
    "@babel/plugin-transform-runtime": "7.24.3",
    "@babel/preset-env": "7.24.5",
    "@commitlint/cli": "19.3.0",
    "@form8ion/commitlint-config": "1.0.76",
    "@vue/compiler-sfc": "3.3.4",
    "@vue/eslint-config-prettier": "9.0.0",
    "@vue/test-utils": "1.3.6",
    "babel-core": "7.0.0-bridge.0",
    "@babel/eslint-parser": "7.24.5",
    "babel-jest": "29.7.0",
    "babel-loader": "9.1.3",
    "babel-preset-env": "1.7.0",
    "babel-preset-vue": "2.0.2",
    "cross-env": "7.0.3",
    "css-loader": "7.1.1",
    "cz-conventional-changelog": "3.3.0",
    "eslint": "8.57.0",
    "eslint-plugin-import": "2.29.1",
    "eslint-plugin-jest": "27.9.0",
    "eslint-plugin-jest-formatting": "3.1.0",
    "eslint-plugin-prettier": "5.1.3",
    "eslint-plugin-vue": "9.26.0",
    "husky": "9.0.11",
    "jest": "27.5.1",
    "lodash": "4.17.21",
    "mockdate": "3.0.5",
    "npm-run-all2": "6.1.2",
    "poi": "12.10.3",
    "prettier": "3.2.5",
    "regenerator-runtime": "0.14.1",
    "rimraf": "5.0.5",
    "semantic-release": "22.0.12",
    "vite": "5.2.14",
    "vite-plugin-vue2": "2.0.3",
    "vue": "2.7.14",
    "vue-html-loader": "1.2.4",
    "vue-jest": "3.0.7",
    "vue-loader": "17.4.2",
    "vue-style-loader": "4.1.3",
    "vue-template-compiler": "2.7.14",
    "vuex": "3.6.2"
  },
  "peerDependencies": {
    "vue": "^2.6.10",
    "vuex": "^3.6.2"
  },
  "dependencies": {
    "dayjs": "^1.11.3"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  }
}