mirror of https://github.com/sundowndev/http.git
60 lines
1.4 KiB
JSON
60 lines
1.4 KiB
JSON
{
|
|
"name": "@nuxtjs/axios",
|
|
"version": "5.3.6",
|
|
"description": "Secure and easy axios integration with Nuxt.js",
|
|
"license": "MIT",
|
|
"main": "lib/module.js",
|
|
"types": "index.d.ts",
|
|
"repository": "https://github.com/nuxt-community/axios-module",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"dev": "nuxt test/fixture",
|
|
"lint": "eslint lib test",
|
|
"test": "npm run lint && jest",
|
|
"release": "standard-version && git push --follow-tags && npm publish",
|
|
"prepare": "npm run test"
|
|
},
|
|
"eslintIgnore": [
|
|
"*.template.*"
|
|
],
|
|
"files": [
|
|
"lib",
|
|
"src",
|
|
"dist",
|
|
"index.d.ts"
|
|
],
|
|
"jest": {
|
|
"testEnvironment": "node",
|
|
"coverageDirectory": "./coverage/",
|
|
"collectCoverage": true,
|
|
"collectCoverageFrom": [
|
|
"lib",
|
|
"test",
|
|
"!test/fixture"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@nuxtjs/proxy": "^1.3.1",
|
|
"axios": "^0.18.0",
|
|
"axios-retry": "^3.1.1",
|
|
"consola": "^2.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"codecov": "^3.1.0",
|
|
"eslint": "^5.9.0",
|
|
"eslint-config-standard": "^12.0.0",
|
|
"eslint-plugin-import": "^2.14.0",
|
|
"eslint-plugin-jest": "^22.0.0",
|
|
"eslint-plugin-node": "^8.0.0",
|
|
"eslint-plugin-promise": "^4.0.1",
|
|
"eslint-plugin-standard": "^4.0.0",
|
|
"eslint-plugin-vue": "^5.0.0",
|
|
"jest": "^23.6.0",
|
|
"jsdom": "^13.0.0",
|
|
"nuxt-edge": "^2.3.0-25706271.cca799c",
|
|
"standard-version": "^4.4.0"
|
|
}
|
|
}
|