nextcloud-tasks/package.json

133 lines
3.7 KiB
JSON

{
"name": "tasks",
"description": "Nextcloud - Tasks",
"version": "0.14.5",
"author": {
"name": "Raimund Schlüßler",
"email": "raimund.schluessler@mailbox.org"
},
"license": "AGPLv3",
"private": true,
"homepage": "https://github.com/nextcloud/tasks",
"scripts": {
"build": "webpack --node-env production --progress",
"dev": "webpack --node-env development --progress",
"watch": "webpack --node-env development --progress --watch",
"lint": "eslint --ext .js,.vue src tests",
"lint:fix": "eslint --ext .js,.vue src tests --fix",
"stylelint": "stylelint 'css/**/*.scss'",
"stylelint:fix": "stylelint 'css/**/*.scss' --fix",
"test": "jest --verbose"
},
"repository": {
"type": "git",
"url": "git@github.com:nextcloud/tasks.git"
},
"bugs": "https://github.com/nextcloud/tasks/issues",
"contributors": [],
"dependencies": {
"@nextcloud/auth": "^2.0.0",
"@nextcloud/axios": "^2.1.0",
"@nextcloud/calendar-js": "^3.1.0",
"@nextcloud/cdav-library": "1.1.0",
"@nextcloud/dialogs": "^3.2.0",
"@nextcloud/event-bus": "^3.0.2",
"@nextcloud/initial-state": "2.0.0",
"@nextcloud/l10n": "^1.6.0",
"@nextcloud/logger": "^2.3.0",
"@nextcloud/moment": "^1.2.1",
"@nextcloud/router": "^2.0.0",
"@nextcloud/vue": "^6.0.0",
"color-convert": "^2.0.1",
"debounce": "^1.2.1",
"ical.js": "^1.5.0",
"jstimezonedetect": "",
"linkify-it": "^4.0.1",
"markdown-it": "^13.0.1",
"markdown-it-emoji": "^2.0.2",
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-task-lists": "^2.1.1",
"md5": "^2.3.0",
"p-limit": "^4.0.0",
"p-queue": "^6.6.2",
"uuid": "^8.3.2",
"v-click-outside": "^3.2.0",
"vue": "^2.7.13",
"vue-material-design-icons": "^5.1.2",
"vue-router": "^3.6.5",
"vuedraggable": "^2.24.3",
"vuex": "^3.6.2",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@nextcloud/babel-config": "^1.0.0-beta.1",
"@nextcloud/browserslist-config": "^2.3.0",
"@nextcloud/eslint-config": "^8.1.2",
"@nextcloud/stylelint-config": "^2.3.0",
"@nextcloud/webpack-vue-config": "^5.3.0",
"@vue/test-utils": "^1.3.0",
"@vue/vue2-jest": "^29.1.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^29.2.1",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.2.1",
"jest-serializer-vue": "^2.0.2",
"jest-transform-stub": "^2.0.0",
"mockdate": "^3.0.5",
"regenerator-runtime": "^0.13.10"
},
"engines": {
"node": "^16.0.0",
"npm": "^7.0.0 || ^8.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"vue"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1",
"^Assets/(.*)$": "<rootDir>/src/assets/$1",
"^Components/(.*)$": "<rootDir>/src/components/$1",
"^Directives/(.*)$": "<rootDir>/src/directives/$1",
"^Fonts/(.*)$": "<rootDir>/src/fonts/$1",
"^Mixins/(.*)$": "<rootDir>/src/mixins/$1",
"^Models/(.*)$": "<rootDir>/src/models/$1",
"^Store/(.*)$": "<rootDir>/src/store/$1",
"^Utils/(.*)$": "<rootDir>/src/utils/$1",
"^Views/(.*)$": "<rootDir>/src/views/$1"
},
"testEnvironment": "jsdom",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
"^.+\\.vue$": "<rootDir>/node_modules/@vue/vue2-jest",
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub"
},
"transformIgnorePatterns": [
"/node_modules/(?!(.*vue-material-design-icons)|(uuid))"
],
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
],
"setupFilesAfterEnv": [
"./tests/javascript/unit/setup.js"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"<rootDir>/src/**/*.{js,vue}",
"!**/node_modules/**"
],
"coverageReporters": [
"json",
"text",
"html",
"lcov",
"clover"
]
},
"browserslist": [
"extends @nextcloud/browserslist-config"
]
}