http/package.json

53 lines
1.4 KiB
JSON
Raw Normal View History

2017-08-13 11:22:10 +00:00
{
2019-03-18 17:49:29 +00:00
"name": "@nuxt/http",
2020-07-16 17:31:14 +00:00
"version": "0.5.10",
2019-03-24 10:40:04 +00:00
"description": "Universal HTTP Module for Nuxt.js",
"repository": "nuxt/http",
2017-08-13 11:22:10 +00:00
"license": "MIT",
2019-03-24 10:40:04 +00:00
"author": "Pooya Parsa <pooya@pi0.ir>",
2018-01-16 16:18:22 +00:00
"main": "lib/module.js",
2019-02-10 05:57:07 +00:00
"types": "types/index.d.ts",
2018-01-29 22:19:30 +00:00
"files": [
"lib",
"ky-universal",
2019-02-10 05:57:07 +00:00
"types/*.d.ts"
2018-01-29 22:19:30 +00:00
],
"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"
},
2017-08-13 11:22:10 +00:00
"dependencies": {
"@nuxtjs/proxy": "^2.0.1",
"abort-controller": "^3.0.0",
"consola": "^2.14.0",
"destr": "^1.0.0",
"ky": "^0.21.0",
"node-fetch": "^2.6.0",
"web-streams-polyfill": "^3.0.0"
2017-08-13 11:22:10 +00:00
},
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"@nuxtjs/eslint-config": "latest",
"babel-eslint": "latest",
"babel-jest": "latest",
"codecov": "latest",
2019-04-09 10:29:39 +00:00
"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",
2020-03-27 12:44:00 +00:00
"nuxt-edge": "latest",
"puppeteer": "latest",
2020-04-13 18:58:21 +00:00
"standard-version": "latest",
"tib": "latest"
2017-08-13 11:22:10 +00:00
}
}