http/package.json

59 lines
1.4 KiB
JSON
Raw Normal View History

2017-08-13 11:22:10 +00:00
{
"name": "@nuxtjs/axios",
2018-03-06 20:30:53 +00:00
"version": "5.1.1",
2017-08-13 11:28:03 +00:00
"description": "Secure and easy axios integration with Nuxt.js",
2017-08-13 11:22:10 +00:00
"license": "MIT",
2018-01-16 16:18:22 +00:00
"main": "lib/module.js",
2017-08-13 11:22:10 +00:00
"repository": "https://github.com/nuxt-community/axios-module",
"publishConfig": {
"access": "public"
},
"scripts": {
2018-01-28 13:58:32 +00:00
"dev": "nuxt test/fixture",
2017-08-13 12:10:55 +00:00
"lint": "eslint lib src test",
"test": "npm run lint && jest",
2017-08-13 12:23:44 +00:00
"release": "standard-version && git push --follow-tags && npm publish",
2017-08-13 14:38:22 +00:00
"prepare": "npm run test"
2017-08-13 11:22:10 +00:00
},
2018-01-29 22:19:30 +00:00
"eslintIgnore": [
"*.template.*"
],
"files": [
"lib",
"src",
"dist"
],
2017-08-13 11:22:10 +00:00
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true,
2018-01-29 22:19:30 +00:00
"collectCoverageFrom": [
"lib",
"test",
"!test/fixture"
]
},
2017-08-13 11:22:10 +00:00
"dependencies": {
2018-03-31 17:52:54 +00:00
"@nuxtjs/proxy": "^1.2.1",
"axios": "^0.18.0",
"axios-retry": "^3.0.2",
"chalk": "^2.3.2",
2018-03-31 17:52:54 +00:00
"consola": "^1.0.0"
2017-08-13 11:22:10 +00:00
},
"devDependencies": {
"codecov": "latest",
2018-02-04 17:43:24 +00:00
"eslint": "^4.17.0",
"eslint-config-standard": "11.0.0",
2018-03-31 17:52:54 +00:00
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-node": "6.0.1",
2018-03-31 17:52:54 +00:00
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "latest",
2018-03-31 17:52:54 +00:00
"eslint-plugin-vue": "^4.4.0",
"jest": "^22.4.3",
2018-02-04 17:43:24 +00:00
"jsdom": "^11.6.2",
2018-03-31 17:52:54 +00:00
"nuxt-edge": "^2.0.0-25375287.923164e",
"standard-version": "latest"
2017-08-13 11:22:10 +00:00
}
}