http/package.json

60 lines
1.4 KiB
JSON
Raw Normal View History

2017-08-13 11:22:10 +00:00
{
"name": "@nuxtjs/axios",
2018-11-08 09:18:05 +00:00
"version": "5.3.6",
2017-08-13 11:28:03 +00:00
"description": "Secure and easy axios integration with Nuxt.js",
2017-08-13 11:22:10 +00:00
"license": "MIT",
2018-01-16 16:18:22 +00:00
"main": "lib/module.js",
"types": "index.d.ts",
2017-08-13 11:22:10 +00:00
"repository": "https://github.com/nuxt-community/axios-module",
"publishConfig": {
"access": "public"
},
"scripts": {
2018-01-28 13:58:32 +00:00
"dev": "nuxt test/fixture",
2018-09-21 11:28:38 +00:00
"lint": "eslint lib test",
2017-08-13 12:10:55 +00:00
"test": "npm run lint && jest",
2017-08-13 12:23:44 +00:00
"release": "standard-version && git push --follow-tags && npm publish",
2017-08-13 14:38:22 +00:00
"prepare": "npm run test"
2017-08-13 11:22:10 +00:00
},
2018-01-29 22:19:30 +00:00
"eslintIgnore": [
"*.template.*"
],
"files": [
"lib",
"src",
"dist",
"index.d.ts"
2018-01-29 22:19:30 +00:00
],
2017-08-13 11:22:10 +00:00
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true,
2018-01-29 22:19:30 +00:00
"collectCoverageFrom": [
"lib",
"test",
"!test/fixture"
]
},
2017-08-13 11:22:10 +00:00
"dependencies": {
"@nuxtjs/proxy": "^1.3.1",
"axios": "^0.18.0",
2018-09-21 10:18:43 +00:00
"axios-retry": "^3.1.1",
"consola": "^2.3.2"
2017-08-13 11:22:10 +00:00
},
"devDependencies": {
2018-09-21 10:18:43 +00:00
"codecov": "^3.1.0",
"eslint": "^5.12.0",
2018-09-21 10:18:43 +00:00
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-node": "^8.0.1",
2018-09-21 10:18:43 +00:00
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.1.0",
"jest": "^24.0.0",
"jsdom": "^13.1.0",
"nuxt-edge": "^2.3.0-25706271.cca799c",
2018-09-21 10:18:43 +00:00
"standard-version": "^4.4.0"
2017-08-13 11:22:10 +00:00
}
}