Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json - github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5e211dccf6e262c6c874f8a7690bf3e4a1af432d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
	"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.4.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.4.0",
		"@vue/test-utils": "^1.3.0",
		"@vue/vue2-jest": "^29.2.0",
		"babel-core": "^7.0.0-bridge.0",
		"babel-jest": "^29.2.1",
		"jest": "^29.2.2",
		"jest-environment-jsdom": "^29.2.2",
		"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"
	]
}