http/package.json

51 lines
1.3 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-03-27 12:45:50 +00:00
"version": "0.4.0",
2019-03-24 10:40:04 +00:00
"description": "Universal HTTP Module for Nuxt.js",
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",
2019-03-24 10:40:04 +00:00
"repository": "nuxt/http",
2017-08-13 11:22:10 +00:00
"publishConfig": {
"access": "public"
},
"scripts": {
2018-01-28 13:58:32 +00:00
"dev": "nuxt test/fixture",
2018-09-21 11:28:38 +00:00
"lint": "eslint lib test",
"test": "yarn lint && jest",
"release": "yarn test && standard-version && git push --follow-tags && npm publish"
2017-08-13 11:22:10 +00:00
},
2018-01-29 22:19:30 +00:00
"files": [
"lib",
2019-02-10 05:57:07 +00:00
"types/*.d.ts"
2018-01-29 22:19:30 +00:00
],
2017-08-13 11:22:10 +00:00
"dependencies": {
"@nuxtjs/proxy": "^1.3.3",
"consola": "^2.11.3",
"ky": "^0.19.0",
"ky-universal": "^0.5.0",
"semver": "^7.1.3"
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",
"standard-version": "latest"
2017-08-13 11:22:10 +00:00
}
}