forked from ckeditor/github-writer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.67 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.67 KB
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
{
"name": "github-writer",
"productName": "GitHub Writer",
"version": "1.9.0",
"description": "A WYSIWYG rich-text editor for GitHub issues, comments and pull requests. Powered by CKEditor.",
"private": true,
"main": "src/github-writer.js",
"repository": {
"type": "git",
"url": "https://github.com/ckeditor/github-writer.git"
},
"keywords": [
"GitHub",
"WYSIWYG",
"Editor",
"Rich-Text Editor",
"Text Editor",
"CKEditor",
"Markdown",
"Chrome",
"Firefox",
"Extension",
"Browser Extension",
"Chrome Extension",
"Firefox Extension"
],
"author": "CKSource (https://cksource.com)",
"license": "GPL-2.0+",
"bugs": {
"url": "https://github.com/ckeditor/github-writer/issues"
},
"homepage": "https://github.com/ckeditor/github-writer",
"dependencies": {
"@ckeditor/ckeditor5-autoformat": "^32.0.0",
"@ckeditor/ckeditor5-basic-styles": "^32.0.0",
"@ckeditor/ckeditor5-block-quote": "^32.0.0",
"@ckeditor/ckeditor5-clipboard": "^32.0.0",
"@ckeditor/ckeditor5-code-block": "^32.0.0",
"@ckeditor/ckeditor5-core": "^32.0.0",
"@ckeditor/ckeditor5-editor-decoupled": "^32.0.0",
"@ckeditor/ckeditor5-engine": "^32.0.0",
"@ckeditor/ckeditor5-enter": "^32.0.0",
"@ckeditor/ckeditor5-essentials": "^32.0.0",
"@ckeditor/ckeditor5-heading": "^32.0.0",
"@ckeditor/ckeditor5-horizontal-line": "^32.0.0",
"@ckeditor/ckeditor5-image": "^32.0.0",
"@ckeditor/ckeditor5-inspector": "^2.2.2",
"@ckeditor/ckeditor5-link": "^32.0.0",
"@ckeditor/ckeditor5-list": "^32.0.0",
"@ckeditor/ckeditor5-markdown-gfm": "^32.0.0",
"@ckeditor/ckeditor5-mention": "^32.0.0",
"@ckeditor/ckeditor5-mermaid": "ckeditor/ckeditor5-mermaid#v0.0.1",
"@ckeditor/ckeditor5-paragraph": "^32.0.0",
"@ckeditor/ckeditor5-paste-from-office": "^32.0.0",
"@ckeditor/ckeditor5-remove-format": "^32.0.0",
"@ckeditor/ckeditor5-table": "^32.0.0",
"@ckeditor/ckeditor5-theme-lark": "^32.0.0",
"@ckeditor/ckeditor5-ui": "^32.0.0",
"@ckeditor/ckeditor5-upload": "^32.0.0",
"@ckeditor/ckeditor5-utils": "^32.0.0",
"@ckeditor/ckeditor5-widget": "^32.0.0",
"@mlewand/ckeditor5-keyboard-marker": "^1.0.3",
"linguist-languages": "^7.15.0"
},
"devDependencies": {
"@ckeditor/ckeditor5-dev-utils": "^28.0.1",
"chai": "^4.3.4",
"copy-webpack-plugin": "^6.4.1",
"eslint": "^7.28.0",
"eslint-config-ckeditor5": "^3.1.0",
"eslint-plugin-no-unsanitized": "^3.1.5",
"filemanager-webpack-plugin": "^2.0.5",
"html-to-json": "^0.6.0",
"karma-sinon-chai": "^2.0.2",
"karma-webpack": "^4.0.2",
"mocha": "^8.4.0",
"mrgit": "^1.0.0",
"postcss-loader": "^3.0.0",
"puppeteer": "10.0.0",
"raw-loader": "^4.0.2",
"sinon-chai": "^3.7.0",
"style-loader": "^1.3.0",
"svgo": "^2.3.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"scripts": {
"test": "ckeditor5-dev-tests -sc --files=./tests/unit/**/*.js --coverage-paths=./src",
"test-functional": "mocha ./tests/functional/*.js --timeout 15000",
"test-compat": "mocha ./tests/compat/*.js --timeout 15000",
"build": "webpack --mode production --config dev/webpack.config.js && bash ./dev/gzipsize.sh",
"build-dev": "webpack --mode development --config dev/webpack.config.js && bash ./dev/gzipsize.sh",
"emojis": "node ./dev/updateemojis.js",
"lint": "eslint --quiet --ignore-path .gitignore '**/*.js'",
"svg-cleanup": "svgo --config=./dev/svgo.config.json ./src/app/icons/*.svg",
"sync": "mrgit sync"
},
"eslintIgnore": [
"build/**"
],
"workspaces": {
"packages": [
"packages/ckeditor5-dev/packages/ckeditor5-dev-tests"
]
}
}