-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "@nuxt/http",
"version": "0.6.4",
"description": "Universal HTTP Module for Nuxt.js",
"repository": "nuxt/http",
"license": "MIT",
"author": "Pooya Parsa <pooya@pi0.ir>",
"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 -i"
},
"dependencies": {
"@nuxtjs/proxy": "^2.1.0",
"abort-controller": "^3.0.0",
"consola": "^2.15.0",
"defu": "^3.2.2",
"destr": "^1.0.1",
"ky": "^0.25.1",
"node-fetch": "^2.6.1",
"web-streams-polyfill": "^3.0.1"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "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",
"jest": "latest",
"nuxt-edge": "latest",
"puppeteer": "latest",
"standard-version": "latest",
"tib": "latest"
}
}