tasks/package.json
dependabot[bot] de2e985fab
Bump vue and vue-template-compiler
Bumps [vue](https://github.com/vuejs/vue) and [vue-template-compiler](https://github.com/vuejs/vue). These dependencies needed to be updated together.

Updates `vue` from 2.6.7 to 2.6.8
- [Release notes](https://github.com/vuejs/vue/releases)
- [Commits](https://github.com/vuejs/vue/compare/v2.6.7...v2.6.8)

Updates `vue-template-compiler` from 2.6.7 to 2.6.8
- [Release notes](https://github.com/vuejs/vue/releases)
- [Commits](https://github.com/vuejs/vue/compare/v2.6.7...v2.6.8)

Signed-off-by: dependabot[bot] <support@dependabot.com>
2019-03-04 08:32:04 +00:00

121 lines
3.4 KiB
JSON

{
"name": "tasks",
"description": "Nextcloud - Tasks",
"version": "0.10.0-alpha1",
"author": {
"name": "Raimund Schlüßler",
"email": "raimund.schluessler@mailbox.org"
},
"license": "AGPLv3",
"private": true,
"homepage": "https://github.com/nextcloud/tasks",
"scripts": {
"dev": "npm run svg_sprite && webpack --config webpack.dev.js",
"watch": "webpack --progress --watch --config webpack.dev.js",
"build": "npm run svg_sprite && webpack --progress --hide-modules --config webpack.prod.js",
"lint": "eslint --ext .js,.vue src tests",
"lint:fix": "eslint --ext .js,.vue src tests --fix",
"test": "jest --verbose",
"svg_sprite": "svg-sprite --config svg-sprite-color.json img/src/color/*.svg && svg-sprite --config svg-sprite-bw.json img/src/bw/*.svg"
},
"repository": {
"type": "git",
"url": "git@github.com:nextcloud/tasks.git"
},
"bugs": "https://github.com/nextcloud/tasks/issues",
"contributors": [],
"dependencies": {
"@babel/polyfill": "^7.2.5",
"axios": "^0.18.0",
"cdav-library": "github:nextcloud/cdav-library#c27587a4fdb318d10ef329548d146755964e6672",
"ical.js": "~1.3.0",
"jstimezonedetect": "",
"linkifyjs": "~2.1.8",
"markdown-it": "~8.4.2",
"markdown-it-emoji": "~1.4.0",
"markdown-it-link-attributes": "~2.1.0",
"markdown-it-task-lists": "~2.1.1",
"linkify-it": "~2.1.0",
"nextcloud-vue": "^0.8.0",
"p-limit": "^2.2.0",
"p-queue": "^3.1.0",
"uuid": "^3.3.2",
"v-tooltip": "2.0.0-rc.33",
"vue": "^2.6.8",
"vue-clipboard2": "^0.3.0",
"vue-router": "3.0.2",
"vuex": "^3.1.0",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.0",
"eslint": "^5.15.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"file-loader": "^3.0.1",
"jest": "^24.1.0",
"jest-serializer-vue": "^2.0.2",
"jsdom": "^13.2.0",
"jsdom-global": "^3.0.2",
"node-sass": "^4.11.0",
"prettier-eslint": "^8.8.2",
"raw-loader": "^1.0.0",
"sass-loader": "^7.1.0",
"stylelint": "^9.10.1",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-scss": "^3.5.4",
"stylelint-webpack-plugin": "^0.10.5",
"svg-sprite": "^1.5.0",
"vue-click-outside": "^1.0.7",
"vue-jest": "^3.0.3",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.8",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-merge": "^4.2.1"
},
"engines": {
"node": ">=10.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"vue"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
],
"collectCoverage": true,
"collectCoverageFrom": [
"<rootDir>/src/**/*.{js,vue}",
"!**/node_modules/**"
],
"coverageReporters": [
"json",
"text",
"html"
]
}
}