-
Notifications
You must be signed in to change notification settings - Fork 246
/
package.json
41 lines (41 loc) · 1.01 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "@nuxtjs/axios",
"version": "5.13.6",
"description": "Secure and easy Axios integration with Nuxt.js",
"repository": "nuxt-community/axios-module",
"license": "MIT",
"contributors": [
"Pooya Parsa <[email protected]>"
],
"main": "lib/module.js",
"types": "types/index.d.ts",
"files": [
"lib",
"types/*.d.ts"
],
"scripts": {
"dev": "nuxt test/fixture",
"lint": "eslint lib test",
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
"test": "yarn lint && jest"
},
"dependencies": {
"@nuxtjs/proxy": "^2.1.0",
"axios": "^0.25.0",
"axios-retry": "^3.2.4",
"consola": "^2.15.3",
"defu": "^5.0.1"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"@nuxtjs/eslint-config": "latest",
"babel-eslint": "latest",
"babel-jest": "latest",
"codecov": "latest",
"eslint": "latest",
"jest": "latest",
"nuxt-edge": "latest",
"standard-version": "latest"
}
}