-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.3 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
{
"name": "@nuxt/http",
"version": "0.3.3",
"description": "Universal HTTP Module for Nuxt.js",
"license": "MIT",
"author": "Pooya Parsa <[email protected]>",
"main": "lib/module.js",
"types": "types/index.d.ts",
"repository": "nuxt/http",
"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",
"consola": "^2.9.0",
"ky": "^0.11.1",
"ky-universal": "^0.2.2",
"semver": "^6.3.0"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"@nuxtjs/eslint-config": "latest",
"babel-eslint": "latest",
"babel-jest": "latest",
"codecov": "latest",
"core-js": "2",
"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": "^2.6.2-25915688.22138535",
"standard-version": "latest"
}
}