huddlebv-plugin-axios
Version:
Fork of Vuex ORM plugin for adding smooth integration with axios. Fork is needed because the highest version we can use is 0.9.1 but that version was dependent on a axios version with multiple vulnerabilities.
92 lines (91 loc) • 2.52 kB
JSON
{
"name": "huddlebv-plugin-axios",
"version": "0.9.1",
"description": "Fork of Vuex ORM plugin for adding smooth integration with axios. Fork is needed because the highest version we can use is 0.9.1 but that version was dependent on a axios version with multiple vulnerabilities.",
"main": "dist/vuex-orm-axios.common.js",
"module": "dist/vuex-orm-axios.esm.js",
"unpkg": "dist/vuex-orm-axios.js",
"typings": "lib/index.d.ts",
"files": [
"dist",
"lib"
],
"scripts": {
"build": "yarn clean && yarn build:ts && yarn build:main ",
"build:ts": "tsc -p tsconfig.build.json",
"build:main": "node build/build.js",
"lint": "tslint '{src,test}/**/*.ts' -c tslint.json -p . --fix",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --collect-coverage",
"clean": "rm -rf dist && rm -rf lib && rm -rf coverage && rm -rf .nyc_output && rm -rf .tmp",
"docs": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "bash ./docs/deploy.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/vuex-orm/plugin-axios.git"
},
"keywords": [
"vue",
"vuex",
"vuex-plugin",
"vuex-orm",
"vuex-orm-plugin",
"axios"
],
"author": "Kia Ishii <kia.king.08@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuex-orm/plugin-axios/issues"
},
"dependencies": {
"@vuex-orm/core": "^0.33.0",
"axios": "^0.21.1"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"axios-mock-adapter": "^1.17.0",
"codecov": "^3.5.0",
"jest": "^24.8.0",
"rollup": "^1.27.1",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"ts-jest": "^24.0.2",
"tslint": "^5.20.1",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.7.2",
"uglify-js": "^3.6.9",
"vue": "^2.6.10",
"vuepress": "^1.2.0",
"vuepress-theme-vue": "^1.1.0",
"vuex": "^3.1.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"json"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1",
"^test/(.*)$": "<rootDir>/test/$1"
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"collectCoverageFrom": [
"src/**/*.ts",
"!src/index.cjs.ts",
"!**/node_modules/**"
],
"coverageReporters": [
"json",
"lcov",
"text-summary",
"clover"
]
}
}