-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "ckeditor5-line-height-plugin",
"version": "0.1.5",
"description": "Plugin for CKEditor5 to create button to change the line height of the selected block.",
"main": "src/lineheight.js",
"dependencies": {
"@ckeditor/ckeditor5-core": "^29.2.0",
"@ckeditor/ckeditor5-ui": "^29.2.0",
"@ckeditor/ckeditor5-utils": "^29.2.0"
},
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-ckeditor5": "^1.0.7",
"husky": "^0.14.3",
"lint-staged": "^7.0.0"
},
"engines": {
"node": ">=6.9.0",
"yarn": ">=1.12.0"
},
"author": "p0thi",
"license": "GPL-2.0-or-later",
"homepage": "https://github.com/p0thi/ckeditor5-line-height-plugin",
"bugs": "https://github.com/p0thi/ckeditor5-line-height-plugin/issues",
"repository": {
"type": "git",
"url": "https://github.com/p0thi/ckeditor5-line-height-plugin.git"
},
"files": [
"lang",
"src"
],
"scripts": {
"lint": "eslint",
"precommit": "lint-staged"
},
"lint-staged": {
"**/*.js": [
"eslint --quiet"
]
},
"eslintIgnore": [
"src/lib/**",
"packages/**"
]
}