forked from nuxt-community/axios-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.41 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@nuxtjs/axios",
"version": "5.4.0",
"description": "Secure and easy axios integration with Nuxt.js",
"license": "MIT",
"contributors": [
"Pooya Parsa <[email protected]>"
],
"main": "lib/module.js",
"types": "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": "yarn lint && jest",
"release": "yarn test && standard-version && git push --follow-tags && npm publish"
},
"files": [
"lib",
"types/*.d.ts"
],
"dependencies": {
"@nuxtjs/proxy": "^1.3.3",
"axios": "^0.18.0",
"axios-retry": "^3.1.2",
"consola": "^2.5.6"
},
"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"
}
}