mirror of https://github.com/sundowndev/http.git
50 lines
1.2 KiB
JSON
Executable File
50 lines
1.2 KiB
JSON
Executable File
{
|
|
"name": "@nuxtjs/axios",
|
|
"version": "3.1.1",
|
|
"description": "Secure and easy axios integration with Nuxt.js",
|
|
"license": "MIT",
|
|
"main": "lib/index.js",
|
|
"repository": "https://github.com/nuxt-community/axios-module",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint lib src test",
|
|
"test": "npm run lint && jest",
|
|
"release": "standard-version && git push --follow-tags && npm publish",
|
|
"prepublish": "npm run test"
|
|
},
|
|
"eslintIgnore": [
|
|
"*.template.*"
|
|
],
|
|
"files": [
|
|
"lib",
|
|
"src",
|
|
"dist"
|
|
],
|
|
"jest": {
|
|
"testEnvironment": "node",
|
|
"coverageDirectory": "./coverage/",
|
|
"collectCoverage": true
|
|
},
|
|
"dependencies": {
|
|
"axios": "^0.16.2",
|
|
"chalk": "^2.1.0",
|
|
"nuxt": "^1.0.0-rc4",
|
|
"whatwg-url": "^6.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"codecov": "^2.3.0",
|
|
"eslint": "^4.4.1",
|
|
"eslint-config-standard": "^10.2.1",
|
|
"eslint-plugin-import": "^2.7.0",
|
|
"eslint-plugin-jest": "^20.0.3",
|
|
"eslint-plugin-node": "^5.1.1",
|
|
"eslint-plugin-promise": "^3.5.0",
|
|
"eslint-plugin-standard": "^3.0.1",
|
|
"eslint-plugin-vue": "^2.1.0",
|
|
"jest": "^20.0.4",
|
|
"standard-version": "^4.2.0"
|
|
}
|
|
}
|