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: fd5dbcbb43d19b69d990e9b20fb48b53da9b804b (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
{
	"name": "tasks",
	"description": "Nextcloud - Tasks",
	"version": "0.9.7",
	"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.json img/src/**/*.svg"
	},
	"repository": {
		"type": "git",
		"url": "git@github.com:nextcloud/tasks.git"
	},
	"bugs": "https://github.com/nextcloud/tasks/issues",
	"contributors": [],
	"dependencies": {
		"@babel/polyfill": "^7.0.0",
		"axios": "^0.18.0",
		"cdav-library": "github:nextcloud/cdav-library",
		"ical.js": "~1.3.0",
		"jstimezonedetect": "",
		"nextcloud-vue": "^0.4.3",
		"p-limit": "^2.0.0",
		"uuid": "^3.3.2",
		"v-tooltip": "2.0.0-rc.33",
		"vue": "^2.5.17",
		"vue-router": "3.0.1",
		"vuex": "^3.0.1",
		"vuex-router-sync": "^5.0.0"
	},
	"devDependencies": {
		"@babel/core": "^7.1.6",
		"@babel/plugin-syntax-dynamic-import": "^7.0.0",
		"@babel/preset-env": "^7.1.6",
		"@vue/test-utils": "^1.0.0-beta.25",
		"babel-core": "^7.0.0-bridge.0",
		"babel-eslint": "^10.0.1",
		"babel-jest": "^23.6.0",
		"babel-loader": "^8.0.4",
		"css-loader": "^1.0.1",
		"eslint": "^5.9.0",
		"eslint-config-standard": "^12.0.0",
		"eslint-friendly-formatter": "^4.0.1",
		"eslint-loader": "^2.1.1",
		"eslint-plugin-import": "^2.14.0",
		"eslint-plugin-node": "^8.0.0",
		"eslint-plugin-promise": "^4.0.1",
		"eslint-plugin-standard": "^4.0.0",
		"eslint-plugin-vue": "^4.7.1",
		"file-loader": "^2.0.0",
		"jest": "^23.6.0",
		"jest-serializer-vue": "^2.0.2",
		"jsdom": "^13.0.0",
		"jsdom-global": "^3.0.2",
		"node-sass": "^4.10.0",
		"prettier-eslint": "^8.8.2",
		"raw-loader": "^0.5.1",
		"sass-loader": "^7.1.0",
		"stylelint": "^9.8.0",
		"stylelint-config-recommended-scss": "^3.2.0",
		"stylelint-scss": "^3.4.0",
		"stylelint-webpack-plugin": "^0.10.5",
		"svg-sprite": "^1.5.0",
		"vue-click-outside": "^1.0.7",
		"vue-jest": "^3.0.0",
		"vue-loader": "^15.4.2",
		"vue-template-compiler": "^2.5.17",
		"webpack": "^4.25.1",
		"webpack-cli": "^3.1.2",
		"webpack-merge": "^4.1.4"
	},
	"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"
		]
	}
}