http/package.json

54 lines
1.4 KiB
JSON
Raw Normal View History

2017-08-13 11:22:10 +00:00
{
"name": "@nuxtjs/axios",
2019-03-05 08:49:23 +00:00
"version": "5.4.1",
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",
"contributors": [
"Pooya Parsa <pooya@pi0.ir>"
],
2018-01-16 16:18:22 +00:00
"main": "lib/module.js",
2019-02-10 05:57:07 +00:00
"types": "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",
"test": "yarn lint && jest",
"release": "yarn test && standard-version && git push --follow-tags && npm publish"
2017-08-13 11:22:10 +00:00
},
2018-01-29 22:19:30 +00:00
"files": [
"lib",
2019-02-10 05:57:07 +00:00
"types/*.d.ts"
2018-01-29 22:19:30 +00:00
],
2017-08-13 11:22:10 +00:00
"dependencies": {
"@nuxtjs/proxy": "^1.3.3",
"axios": "^0.18.0",
"axios-retry": "^3.1.2",
"consola": "^2.5.6"
2017-08-13 11:22:10 +00:00
},
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@nuxtjs/eslint-config": "latest",
"babel-eslint": "latest",
"babel-jest": "latest",
"codecov": "latest",
"eslint": "latest",
"eslint-config-standard": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jest": "latest",
"eslint-plugin-node": "latest",
"eslint-plugin-promise": "latest",
"eslint-plugin-standard": "latest",
"eslint-plugin-vue": "latest",
"husky": "latest",
"jest": "latest",
"nuxt-edge": "latest",
"standard-version": "latest"
2017-08-13 11:22:10 +00:00
}
}