2014-03-28 23:11:56 +04:00
|
|
|
{
|
2018-08-30 23:22:27 +03:00
|
|
|
"name": "tasks",
|
|
|
|
"description": "Nextcloud - Tasks",
|
2022-03-19 23:14:20 +03:00
|
|
|
"version": "0.14.4",
|
2018-08-30 23:22:27 +03:00
|
|
|
"author": {
|
|
|
|
"name": "Raimund Schlüßler",
|
|
|
|
"email": "raimund.schluessler@mailbox.org"
|
|
|
|
},
|
|
|
|
"license": "AGPLv3",
|
|
|
|
"private": true,
|
|
|
|
"homepage": "https://github.com/nextcloud/tasks",
|
|
|
|
"scripts": {
|
2022-01-25 17:09:18 +03:00
|
|
|
"build": "webpack --node-env production --progress",
|
|
|
|
"dev": "webpack --node-env development --progress",
|
|
|
|
"watch": "webpack --node-env development --progress --watch",
|
2018-08-30 23:22:27 +03:00
|
|
|
"lint": "eslint --ext .js,.vue src tests",
|
|
|
|
"lint:fix": "eslint --ext .js,.vue src tests --fix",
|
2021-05-02 15:33:02 +03:00
|
|
|
"stylelint": "stylelint 'css/**/*.scss'",
|
|
|
|
"stylelint:fix": "stylelint 'css/**/*.scss' --fix",
|
2021-05-02 10:28:38 +03:00
|
|
|
"test": "jest --verbose"
|
2018-08-30 23:22:27 +03:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git@github.com:nextcloud/tasks.git"
|
|
|
|
},
|
|
|
|
"bugs": "https://github.com/nextcloud/tasks/issues",
|
|
|
|
"contributors": [],
|
|
|
|
"dependencies": {
|
2022-08-13 04:02:22 +03:00
|
|
|
"@nextcloud/auth": "^2.0.0",
|
2022-08-13 18:52:47 +03:00
|
|
|
"@nextcloud/axios": "^2.0.0",
|
2022-08-20 04:00:45 +03:00
|
|
|
"@nextcloud/calendar-js": "^3.1.0",
|
2022-02-26 05:02:07 +03:00
|
|
|
"@nextcloud/cdav-library": "1.1.0",
|
2022-08-13 04:02:38 +03:00
|
|
|
"@nextcloud/dialogs": "^3.2.0",
|
2022-08-13 10:34:23 +03:00
|
|
|
"@nextcloud/event-bus": "^3.0.0",
|
2021-11-06 23:46:40 +03:00
|
|
|
"@nextcloud/initial-state": "1.2.1",
|
2022-05-14 04:01:19 +03:00
|
|
|
"@nextcloud/l10n": "^1.6.0",
|
2022-07-09 04:02:22 +03:00
|
|
|
"@nextcloud/logger": "^2.2.1",
|
2022-04-22 22:08:26 +03:00
|
|
|
"@nextcloud/moment": "^1.2.1",
|
2021-05-09 21:47:31 +03:00
|
|
|
"@nextcloud/router": "^2.0.0",
|
2022-08-23 20:43:35 +03:00
|
|
|
"@nextcloud/vue": "^6.0.0-beta.4",
|
2020-03-08 12:57:20 +03:00
|
|
|
"color-convert": "^2.0.1",
|
2021-03-13 11:39:47 +03:00
|
|
|
"debounce": "^1.2.1",
|
2022-01-08 11:05:02 +03:00
|
|
|
"ical.js": "^1.5.0",
|
2018-08-30 23:22:27 +03:00
|
|
|
"jstimezonedetect": "",
|
2022-05-07 04:00:34 +03:00
|
|
|
"linkify-it": "^4.0.1",
|
2022-05-07 17:29:26 +03:00
|
|
|
"markdown-it": "^13.0.1",
|
2022-04-22 22:08:26 +03:00
|
|
|
"markdown-it-emoji": "^2.0.2",
|
2022-08-13 04:01:06 +03:00
|
|
|
"markdown-it-link-attributes": "^4.0.1",
|
2022-04-22 22:08:26 +03:00
|
|
|
"markdown-it-task-lists": "^2.1.1",
|
2020-08-08 04:14:57 +03:00
|
|
|
"md5": "^2.3.0",
|
2021-08-14 04:00:53 +03:00
|
|
|
"p-limit": "^4.0.0",
|
2020-10-25 22:20:33 +03:00
|
|
|
"p-queue": "^6.6.2",
|
2020-12-12 05:18:27 +03:00
|
|
|
"uuid": "^8.3.2",
|
2022-05-21 04:01:15 +03:00
|
|
|
"v-click-outside": "^3.2.0",
|
2022-08-21 23:02:56 +03:00
|
|
|
"vue": "^2.7.9",
|
2021-09-18 04:01:39 +03:00
|
|
|
"vue-clipboard2": "^0.3.3",
|
2022-07-16 04:00:44 +03:00
|
|
|
"vue-material-design-icons": "^5.1.2",
|
2022-05-21 04:02:35 +03:00
|
|
|
"vue-router": "^3.5.4",
|
2020-10-25 22:17:44 +03:00
|
|
|
"vuedraggable": "^2.24.3",
|
2021-01-30 05:06:56 +03:00
|
|
|
"vuex": "^3.6.2",
|
2018-09-12 23:34:59 +03:00
|
|
|
"vuex-router-sync": "^5.0.0"
|
2018-08-30 23:22:27 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-06-11 23:59:12 +03:00
|
|
|
"@nextcloud/babel-config": "^1.0.0-beta.1",
|
2022-08-13 10:48:08 +03:00
|
|
|
"@nextcloud/browserslist-config": "^2.3.0",
|
2022-04-22 22:00:36 +03:00
|
|
|
"@nextcloud/eslint-config": "^8.0.0",
|
2022-08-13 04:03:22 +03:00
|
|
|
"@nextcloud/stylelint-config": "^2.2.0",
|
2022-08-13 17:27:18 +03:00
|
|
|
"@nextcloud/webpack-vue-config": "^5.3.0",
|
2022-04-10 12:48:18 +03:00
|
|
|
"@vue/test-utils": "^1.3.0",
|
2022-08-20 04:01:45 +03:00
|
|
|
"@vue/vue2-jest": "^28.1.0",
|
2018-11-03 00:20:56 +03:00
|
|
|
"babel-core": "^7.0.0-bridge.0",
|
2022-07-02 04:01:24 +03:00
|
|
|
"babel-jest": "^28.1.2",
|
2022-07-14 23:28:53 +03:00
|
|
|
"jest": "^28.1.3",
|
2022-07-14 23:38:42 +03:00
|
|
|
"jest-environment-jsdom": "^28.1.3",
|
2018-08-30 23:22:27 +03:00
|
|
|
"jest-serializer-vue": "^2.0.2",
|
2022-05-29 23:11:08 +03:00
|
|
|
"jest-transform-stub": "^2.0.0",
|
2021-03-27 05:03:11 +03:00
|
|
|
"mockdate": "^3.0.5",
|
2022-04-10 12:40:02 +03:00
|
|
|
"regenerator-runtime": "^0.13.9"
|
2018-08-30 23:22:27 +03:00
|
|
|
},
|
|
|
|
"engines": {
|
2022-08-13 22:23:17 +03:00
|
|
|
"node": "^16.0.0",
|
|
|
|
"npm": "^7.0.0 || ^8.0.0"
|
2018-08-30 23:22:27 +03:00
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"moduleFileExtensions": [
|
|
|
|
"js",
|
|
|
|
"vue"
|
|
|
|
],
|
|
|
|
"moduleNameMapper": {
|
2020-02-02 22:51:03 +03:00
|
|
|
"^@/(.*)$": "<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",
|
2021-04-08 10:32:24 +03:00
|
|
|
"^Utils/(.*)$": "<rootDir>/src/utils/$1",
|
|
|
|
"^Views/(.*)$": "<rootDir>/src/views/$1"
|
2018-08-30 23:22:27 +03:00
|
|
|
},
|
2021-06-12 14:08:51 +03:00
|
|
|
"testEnvironment": "jsdom",
|
2018-08-30 23:22:27 +03:00
|
|
|
"transform": {
|
|
|
|
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
|
2022-05-29 23:11:08 +03:00
|
|
|
"^.+\\.vue$": "<rootDir>/node_modules/@vue/vue2-jest",
|
|
|
|
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub"
|
2018-08-30 23:22:27 +03:00
|
|
|
},
|
2021-04-24 14:11:14 +03:00
|
|
|
"transformIgnorePatterns": [
|
2022-05-28 23:17:57 +03:00
|
|
|
"/node_modules/(?!(.*vue-material-design-icons)|(uuid))"
|
2021-04-24 14:11:14 +03:00
|
|
|
],
|
2018-08-30 23:22:27 +03:00
|
|
|
"snapshotSerializers": [
|
|
|
|
"<rootDir>/node_modules/jest-serializer-vue"
|
|
|
|
],
|
2019-10-28 11:57:15 +03:00
|
|
|
"setupFilesAfterEnv": [
|
|
|
|
"./tests/javascript/unit/setup.js"
|
|
|
|
],
|
2019-06-12 22:27:23 +03:00
|
|
|
"coverageDirectory": "./coverage/",
|
2018-08-30 23:22:27 +03:00
|
|
|
"collectCoverage": true,
|
|
|
|
"collectCoverageFrom": [
|
|
|
|
"<rootDir>/src/**/*.{js,vue}",
|
2018-11-17 13:58:40 +03:00
|
|
|
"!**/node_modules/**"
|
2018-08-30 23:22:27 +03:00
|
|
|
],
|
|
|
|
"coverageReporters": [
|
|
|
|
"json",
|
|
|
|
"text",
|
2019-06-12 22:27:23 +03:00
|
|
|
"html",
|
|
|
|
"lcov",
|
|
|
|
"clover"
|
2018-08-30 23:22:27 +03:00
|
|
|
]
|
2019-09-02 23:03:37 +03:00
|
|
|
},
|
|
|
|
"browserslist": [
|
2020-03-07 18:26:47 +03:00
|
|
|
"extends @nextcloud/browserslist-config"
|
2019-09-02 23:03:37 +03:00
|
|
|
]
|
2014-03-28 23:11:56 +04:00
|
|
|
}
|