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

package.json - github.com/nextcloud/privacy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a2151b2980de047bfe0006c3ec97023da8cd54b2 (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
{
	"name": "privacy",
	"version": "1.3.0",
	"description": "Place this app in **nextcloud/apps/**",
	"main": "js/privacy.js",
	"directories": {
		"lib": "lib",
		"test": "tests"
	},
	"private": true,
	"scripts": {
		"build": "NODE_ENV=production webpack --progress --hide-modules --config webpack.prod.js",
		"dev": "NODE_ENV=development webpack --progress --config webpack.dev.js",
		"watch": "NODE_ENV=development webpack --progress --watch --config webpack.dev.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"
	},
	"homepage": "https://github.com/nextcloud/privacy",
	"author": "Georg Ehrke",
	"license": "AGPL-3.0-or-later",
	"dependencies": {
		"@babel/polyfill": "^7.8.7",
		"@nextcloud/auth": "^1.2.3",
		"@nextcloud/axios": "^1.3.2",
		"@nextcloud/dialogs": "^1.3.0",
		"@nextcloud/initial-state": "^1.1.2",
		"@nextcloud/l10n": "^1.2.3",
		"@nextcloud/router": "^1.0.2",
		"@nextcloud/vue": "^1.5.0",
		"core-js": "^3.4.4",
		"vue": "^2.6.11",
		"vue-click-outside": "^1.1.0",
		"vuex": "^3.3.0"
	},
	"browserslist": [
		"extends @nextcloud/browserslist-config"
	],
	"engines": {
		"node": ">=10.0.0"
	},
	"devDependencies": {
		"@babel/core": "^7.9.6",
		"@babel/plugin-syntax-dynamic-import": "^7.8.3",
		"@babel/preset-env": "^7.9.6",
		"@nextcloud/browserslist-config": "^1.0.0",
		"@nextcloud/eslint-config": "^2.0.0",
		"@nextcloud/eslint-plugin": "^1.4.0",
		"@vue/test-utils": "^1.0.0",
		"babel-eslint": "^10.1.0",
		"babel-jest": "^26.0.1",
		"babel-loader": "^8.1.0",
		"css-loader": "^3.5.3",
		"eslint": "^6.8.0",
		"eslint-config-standard": "^12.0.0",
		"eslint-friendly-formatter": "^4.0.1",
		"eslint-import-resolver-webpack": "^0.12.1",
		"eslint-loader": "^3.0.4",
		"eslint-plugin-import": "^2.20.2",
		"eslint-plugin-nextcloud": "^0.3.0",
		"eslint-plugin-node": "^11.1.0",
		"eslint-plugin-promise": "^4.2.1",
		"eslint-plugin-standard": "^4.0.1",
		"eslint-plugin-vue": "^6.2.2",
		"stylelint": "^13.3.3",
		"stylelint-config-recommended-scss": "^4.2.0",
		"stylelint-scss": "^3.17.1",
		"stylelint-webpack-plugin": "^2.0.0",
		"vue-loader": "^15.9.2",
		"vue-template-compiler": "^2.6.11",
		"webpack": "^4.43.0",
		"webpack-cli": "^3.3.11",
		"webpack-merge": "^4.2.2"
	}
}