2017-08-13 11:22:10 +00:00
|
|
|
{
|
|
|
|
"name": "@nuxtjs/axios",
|
2017-09-30 16:32:49 +00:00
|
|
|
"version": "4.4.0",
|
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",
|
2017-08-13 12:10:55 +00:00
|
|
|
"main": "lib/index.js",
|
2017-08-13 11:22:10 +00:00
|
|
|
"repository": "https://github.com/nuxt-community/axios-module",
|
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
},
|
|
|
|
"scripts": {
|
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
|
|
|
},
|
2017-08-13 12:10:55 +00:00
|
|
|
"eslintIgnore": [
|
|
|
|
"*.template.*"
|
|
|
|
],
|
|
|
|
"files": [
|
|
|
|
"lib",
|
|
|
|
"src",
|
|
|
|
"dist"
|
|
|
|
],
|
2017-08-13 11:22:10 +00:00
|
|
|
"jest": {
|
|
|
|
"testEnvironment": "node",
|
|
|
|
"coverageDirectory": "./coverage/",
|
2017-09-06 18:53:45 +00:00
|
|
|
"collectCoverage": true,
|
|
|
|
"collectCoverageFrom": [
|
|
|
|
"lib",
|
|
|
|
"test",
|
|
|
|
"!test/fixture"
|
|
|
|
]
|
2017-08-13 11:22:10 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"axios": "^0.16.2",
|
|
|
|
"chalk": "^2.1.0",
|
2017-09-28 22:54:10 +00:00
|
|
|
"debug": "^3.1.0",
|
|
|
|
"whatwg-url": "^6.3.0"
|
2017-08-13 11:22:10 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-09-28 22:54:10 +00:00
|
|
|
"nuxt": "^1.0.0-rc11",
|
2017-08-13 12:19:43 +00:00
|
|
|
"codecov": "^2.3.0",
|
2017-09-28 22:54:10 +00:00
|
|
|
"eslint": "^4.7.2",
|
2017-08-13 11:22:10 +00:00
|
|
|
"eslint-config-standard": "^10.2.1",
|
|
|
|
"eslint-plugin-import": "^2.7.0",
|
2017-09-28 22:54:10 +00:00
|
|
|
"eslint-plugin-jest": "^21.2.0",
|
|
|
|
"eslint-plugin-node": "^5.2.0",
|
2017-08-13 11:22:10 +00:00
|
|
|
"eslint-plugin-promise": "^3.5.0",
|
|
|
|
"eslint-plugin-standard": "^3.0.1",
|
2017-08-13 12:10:55 +00:00
|
|
|
"eslint-plugin-vue": "^2.1.0",
|
2017-09-28 22:54:10 +00:00
|
|
|
"jest": "^21.2.1",
|
|
|
|
"jsdom": "^11.2.0",
|
2017-08-13 11:29:27 +00:00
|
|
|
"standard-version": "^4.2.0"
|
2017-08-13 11:22:10 +00:00
|
|
|
}
|
|
|
|
}
|