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

package.json - github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1f2244aeb485e751fd2efb84dc3440fa239cbc8d (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
{
	"name": "text",
	"description": "Collaborative document editing",
	"version": "3.4.0",
	"authors": [
		{
			"name": "Julius Härtl",
			"email": "jus@bitgrid.net",
			"role": "Developer"
		}
	],
	"license": "agpl",
	"private": true,
	"scripts": {
		"dev": "NODE_ENV=development webpack --config webpack.js",
		"watch": "NODE_ENV=development webpack --progress --watch --config webpack.js",
		"build": "NODE_ENV=production webpack --progress --config webpack.js",
		"lint": "eslint --ext .js,.vue src",
		"lint:fix": "eslint --ext .js,.vue src --fix",
		"stylelint": "stylelint src/**/*.vue src/**/*.scss src/**/*.css",
		"stylelint:fix": "stylelint src/**/*.vue src/**/*.scss src/**/*.css --fix",
		"test": "NODE_ENV=test jest --passWithNoTests src/",
		"test:coverage": "NODE_ENV=test jest --coverage src/"
	},
	"browserslist": [
		"extends @nextcloud/browserslist-config"
	],
	"dependencies": {
		"@nextcloud/auth": "^1.3.0",
		"@nextcloud/axios": "^1.7.0",
		"@nextcloud/browser-storage": "^0.1.1",
		"@nextcloud/event-bus": "^2.1.1",
		"@nextcloud/initial-state": "^1.2.1",
		"@nextcloud/l10n": "^1.4.1",
		"@nextcloud/moment": "^1.2.1",
		"@nextcloud/router": "^2.0.0",
		"@nextcloud/vue": "^4.2.0",
		"core-js": "^3.25.5",
		"entities": "^3.0.1",
		"escape-html": "^1.0.3",
		"highlight.js": "^10.7.3",
		"markdown-it": "^12.3.2",
		"markdown-it-task-lists": "^2.1.1",
		"prosemirror-collab": "^1.3.0",
		"prosemirror-inputrules": "^1.2.0",
		"prosemirror-markdown": "^1.10.0",
		"prosemirror-model": "^1.18.1",
		"prosemirror-schema-list": "^1.2.2",
		"prosemirror-state": "^1.4.1",
		"prosemirror-transform": "~1.7.0",
		"prosemirror-utils": "^1.0.0-0",
		"prosemirror-view": "^1.28.3",
		"proxy-polyfill": "^0.3.2",
		"tiptap": "^1.32.2",
		"tiptap-commands": "^1.17.1",
		"tiptap-extensions": "^1.35.2",
		"tiptap-utils": "^1.13.1",
		"vue": "^2.6.14",
		"vue-click-outside": "^1.1.0",
		"vuex": "^3.6.2"
	},
	"engines": {
		"node": ">=14.0.0",
		"npm": ">=7.0.0"
	},
	"devDependencies": {
		"@cypress/browserify-preprocessor": "^3.0.2",
		"@nextcloud/babel-config": "^1.0.0",
		"@nextcloud/browserslist-config": "^2.3.0",
		"@nextcloud/eslint-config": "^6.1.2",
		"@nextcloud/stylelint-config": "^1.0.0-beta.0",
		"@nextcloud/webpack-vue-config": "^4.1.0",
		"@vue/test-utils": "^1.3.0",
		"babel-core": "^7.0.0-bridge.0",
		"cypress": "^9.2.0",
		"jest": "^27.5.1",
		"jest-environment-jsdom": "^27.5.1",
		"jest-serializer-vue": "^2.0.2",
		"regenerator-runtime": "^0.12.1",
		"vue-jest": "^3.0.7"
	},
	"jest": {
		"verbose": true,
		"testEnvironment": "jest-environment-jsdom",
		"moduleFileExtensions": [
			"js",
			"vue"
		],
		"moduleNameMapper": {
			"^@/(.*)$": "<rootDir>/src/$1"
		},
		"testPathIgnorePatterns": [
			"<rootDir>/src/tests/fixtures/",
			"<rootDir>/build"
		],
		"transform": {
			"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
			".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
		},
		"snapshotSerializers": [
			"<rootDir>/node_modules/jest-serializer-vue"
		],
		"setupFilesAfterEnv": [
			"<rootDir>/src/tests/setup.js"
		]
	}
}