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-02-08 21:34:52 +00:00
"version": "5.0.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-01-28 19:10:23 +00:00
"@nuxtjs/proxy": "^1.1.4",
2017-11-16 10:13:48 +00:00
"axios": "^0.17.1",
"axios-retry": "^3.0.1",
2017-11-16 10:13:48 +00:00
"chalk": "^2.3.0",
"debug": "^3.1.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": "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",
2018-02-04 17:43:24 +00:00
"jsdom": "^11.6.2",
"nuxt": "^1.3.0",
"standard-version": "latest"
2017-08-13 11:22:10 +00:00
}
}