{ "name": "calendar", "description": "A calendar app for Nextcloud. Easily sync events from various devices, share and edit them online.", "version": "2.0.0-alpha1", "author": "Georg Ehrke ", "contributors": [ "Georg Ehrke ", "Thomas Citharel " ], "keywords": [ "nextcloud", "calendars", "vevent", "caldav" ], "bugs": { "url": "https://github.com/nextcloud/calendar/issues" }, "repository": { "url": "https://github.com/nextcloud/calendar", "type": "git" }, "homepage": "https://github.com/nextcloud/calendar", "license": "agpl", "private": true, "scripts": { "dev": "webpack --config webpack.dev.js", "watch": "webpack --progress --watch --config webpack.dev.js", "build": "webpack --progress --hide-modules --config webpack.prod.js", "lint": "eslint --ext .js,.vue src", "lint:fix": "eslint --ext .js,.vue src --fix", "stylelint": "stylelint src", "stylelint:fix": "stylelint src --fix", "test": "jest", "test:coverage": "jest --coverage" }, "dependencies": { "@babel/polyfill": "^7.4.4", "axios": "^0.19.0", "calendar-js": "git+https://github.com/georgehrke/calendar-js.git", "cdav-library": "github:nextcloud/cdav-library", "debounce": "^1.2.0", "fullcalendar": "^4.0.0-alpha.4", "jstz": "^2.1.1", "moment": "^2.24.0", "nextcloud-auth": "0.0.3", "nextcloud-axios": "^0.2.0", "nextcloud-dialogs": "0.0.2", "nextcloud-initial-state": "0.0.1", "nextcloud-l10n": "0.0.2", "nextcloud-logger": "0.0.3", "nextcloud-router": "0.0.6", "nextcloud-server": "^0.15.10", "nextcloud-vue": "^0.12.1", "p-limit": "^2.2.1", "p-queue": "^6.1.1", "uuid": "^3.3.3", "v-tooltip": "^2.0.2", "vue": "^2.6.10", "vue-click-outside": "^1.0.7", "vue-clipboard2": "^0.3.0", "vue-multiselect": "^2.1.6", "vue-router": "^3.1.2", "vuex": "^3.1.1", "vuex-router-sync": "^5.0.0" }, "browserslist": [ "> 2% and last 2 versions", "ie >= 11" ], "engines": { "node": ">=10.0.0" }, "devDependencies": { "@babel/core": "^7.5.5", "@babel/plugin-syntax-dynamic-import": "^7.2.0", "@babel/preset-env": "^7.5.5", "@vue/test-utils": "^1.0.0-beta.29", "babel-eslint": "^10.0.2", "babel-jest": "^24.9.0", "babel-loader": "^8.0.6", "browserslist-config-nextcloud": "0.0.1", "css-loader": "^3.2.0", "eslint": "^5.16.0", "eslint-config-standard": "^12.0.0", "eslint-friendly-formatter": "^4.0.1", "eslint-loader": "^3.0.0", "eslint-plugin-import": "^2.18.2", "eslint-plugin-node": "^9.1.0", "eslint-plugin-promise": "^4.2.1", "eslint-plugin-standard": "^4.0.1", "eslint-plugin-vue": "^5.2.3", "file-loader": "^4.2.0", "jest": "^24.9.0", "jest-serializer-vue": "^2.0.2", "node-sass": "^4.12.0", "prettier-eslint": "^9.0.0", "sass-loader": "^7.3.1", "stylelint": "^10.1.0", "stylelint-bare-webpack-plugin": "^1.1.2", "stylelint-config-recommended-scss": "^3.3.0", "stylelint-scss": "^3.9.4", "vue-jest": "^3.0.4", "vue-loader": "^15.7.1", "vue-template-compiler": "^2.6.10", "webpack": "^4.39.2", "webpack-cli": "^3.3.7", "webpack-merge": "^4.2.1" }, "optionalDependencies": { "fsevents": "^2.0.7" }, "jest": { "moduleFileExtensions": [ "js", "vue" ], "moduleNameMapper": { "^@/(.*)$": "/src/$1" }, "transform": { "^.+\\.js$": "babel-jest", "^.+\\.vue$": "vue-jest" }, "snapshotSerializers": [ "/node_modules/jest-serializer-vue" ], "globals": { "t": true, "n": true, "OC": true, "OCA": true } } }