-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
98 lines (98 loc) · 2.68 KB
/
package.json
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
{
"name": "@ckeditor/ckeditor5-dev-tests",
"version": "45.0.8",
"description": "Testing environment for CKEditor 5.",
"keywords": [],
"author": "CKSource (http://cksource.com/)",
"license": "GPL-2.0-or-later",
"homepage": "https://github.com/ckeditor/ckeditor5-dev/tree/master/packages/ckeditor5-dev-tests",
"bugs": "https://github.com/ckeditor/ckeditor5/issues",
"repository": {
"type": "git",
"url": "https://github.com/ckeditor/ckeditor5-dev.git",
"directory": "packages/ckeditor5-dev-tests"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=5.7.1"
},
"type": "module",
"main": "lib/index.js",
"files": [
"lib",
"bin"
],
"bin": {
"ckeditor5-dev-tests-run-automated": "bin/testautomated.js",
"ckeditor5-dev-tests-run-manual": "bin/testmanual.js"
},
"dependencies": {
"@babel/core": "^7.10.5",
"@ckeditor/ckeditor5-dev-translations": "^45.0.8",
"@ckeditor/ckeditor5-dev-utils": "^45.0.8",
"@ckeditor/ckeditor5-inspector": "^4.0.0",
"@types/chai": "^4.3.5",
"@types/karma-sinon-chai": "^2.0.2",
"@types/mocha": "^10.0.1",
"@types/sinon": "^10.0.15",
"assertion-error": "^2.0.0",
"babel-plugin-istanbul": "^7.0.0",
"buffer": "^6.0.3",
"chai": "^4.5.0",
"chalk": "^5.0.0",
"chokidar": "^4.0.0",
"commonmark": "^0.29.1",
"del": "^7.0.0",
"dom-combiner": "^0.1.3",
"fs-extra": "^11.0.0",
"glob": "^10.0.0",
"inquirer": "^11.0.0",
"is-interactive": "^2.0.0",
"is-wsl": "^3.0.0",
"js-beautify": "^1.11.0",
"karma": "^6.4.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-firefox-launcher": "^2.0.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon": "^1.0.5",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.4.0",
"karma-webpack": "^5.0.0",
"lodash-es": "^4.17.21",
"minimatch": "^9.0.0",
"minimist": "^1.2.8",
"mkdirp": "^3.0.0",
"mocha": "^10.0.0",
"node-notifier": "^10.0.1",
"process": "^0.11.10",
"sinon": "^9.2.4",
"sinon-chai": "^3.5.0",
"socket.io": "^4.0.0",
"typescript": "5.0.4",
"webpack": "^5.94.0"
},
"devDependencies": {
"jest-extended": "^4.0.2",
"vitest": "^2.0.5"
},
"scripts": {
"postinstall": "node bin/postinstall.js",
"test": "vitest run --config vitest.config.js",
"coverage": "vitest run --config vitest.config.js --coverage"
},
"depcheckIgnore": [
"@babel/core",
"@types/chai",
"@types/karma-sinon-chai",
"@types/mocha",
"@types/sinon",
"babel-plugin-istanbul",
"buffer",
"mocha",
"process",
"typescript"
]
}