http/package.json

49 lines
1.3 KiB
JSON

{
"name": "@nuxt/http",
"version": "0.0.0",
"description": "Universal HTTP Module for Nuxt.js",
"license": "MIT",
"author": "Pooya Parsa <pooya@pi0.ir>",
"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.5.8",
"ky": "^0.9.0",
"ky-universal": "^0.1.0"
},
"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": "^2.6.2-25912807.87fcf556",
"standard-version": "latest"
}
}