forked from p0thi/ckeditor5-line-height-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.49 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
99
100
101
{
"name": "@ShelterzoomCorp/ckeditor5-line-height-plugin",
"version": "0.2.0",
"description": "Line height plugin for CKEditor 5.",
"main": "src/index.js",
"author": "p0thi",
"license": "GPL-2.0-or-later",
"homepage": "https://github.com/p0thi/ckeditor5-line-height-plugin",
"dependencies": {
"@ckeditor/ckeditor5-core": ">=34.0.0",
"@ckeditor/ckeditor5-ui": "^34.0.0",
"@ckeditor/ckeditor5-utils": "^34.0.0"
},
"devDependencies": {
"@ckeditor/ckeditor5-autoformat": ">=34.0.0",
"@ckeditor/ckeditor5-basic-styles": ">=34.0.0",
"@ckeditor/ckeditor5-block-quote": ">=34.0.0",
"@ckeditor/ckeditor5-code-block": ">=34.0.0",
"@ckeditor/ckeditor5-editor-classic": ">=34.0.0",
"@ckeditor/ckeditor5-essentials": ">=34.0.0",
"@ckeditor/ckeditor5-heading": ">=34.0.0",
"@ckeditor/ckeditor5-image": ">=34.0.0",
"@ckeditor/ckeditor5-indent": ">=34.0.0",
"@ckeditor/ckeditor5-inspector": ">=4.0.0",
"@ckeditor/ckeditor5-link": ">=34.0.0",
"@ckeditor/ckeditor5-list": ">=34.0.0",
"@ckeditor/ckeditor5-media-embed": ">=34.0.0",
"@ckeditor/ckeditor5-package-tools": "^1.0.0-beta.5",
"@ckeditor/ckeditor5-paragraph": ">=34.0.0",
"@ckeditor/ckeditor5-restricted-editing": "^34.0.0",
"@ckeditor/ckeditor5-table": ">=34.0.0",
"@ckeditor/ckeditor5-theme-lark": ">=34.0.0",
"@ckeditor/ckeditor5-upload": ">=34.0.0",
"@types/chai": "^4.3.1",
"@types/ckeditor__ckeditor5-autoformat": "^31.0.0",
"@types/ckeditor__ckeditor5-basic-styles": "^28.0.2",
"@types/ckeditor__ckeditor5-block-quote": "^29.0.4",
"@types/ckeditor__ckeditor5-core": "^33.0.2",
"@types/ckeditor__ckeditor5-editor-classic": "^27.1.2",
"@types/ckeditor__ckeditor5-essentials": "^28.0.3",
"@types/ckeditor__ckeditor5-list": "^32.0.1",
"@types/ckeditor__ckeditor5-paragraph": "^27.0.5",
"@types/ckeditor__ckeditor5-special-characters": "^29.0.2",
"@types/karma": "^6.3.3",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.1",
"@types/sinon": "^10.0.11",
"chai": "^4.3.6",
"eslint": "^7.32.0",
"eslint-config-ckeditor5": ">=4.0.0",
"http-server": "^14.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.6",
"node-polyfill-webpack-plugin": "^1.1.4",
"stylelint": "^13.13.1",
"stylelint-config-ckeditor5": ">=4.0.0",
"util": "^0.12.4"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=5.7.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShelterzoomCorp/ckeditor5-line-height-plugin.git"
},
"files": [
"lang",
"src",
"build",
"ckeditor5-metadata.json"
],
"scripts": {
"dll:build": "ckeditor5-package-tools dll:build",
"dll:serve": "http-server ./ -o sample/dll.html",
"lint": "eslint \"**/*.js\" --quiet --ignore-pattern \"build/\"",
"start": "ckeditor5-package-tools start",
"stylelint": "stylelint --quiet --allow-empty-input 'theme/**/*.css'",
"prepare": "yarn run dll:build",
"prepublishOnly": "yarn run dll:build",
"translations:collect": "ckeditor5-package-tools translations:collect",
"translations:download": "ckeditor5-package-tools translations:download",
"translations:upload": "ckeditor5-package-tools translations:upload"
},
"lint-staged": {
"**/*.js": [
"eslint --quiet"
],
"**/*.css": [
"stylelint --quiet --allow-empty-input"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}