-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.32 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
{
"name": "@didask/ckeditor5-hr",
"version": "1.0.1",
"description": "Horizontal Rule, Separator plugin for CKEditor5",
"keywords": [
"ckeditor",
"ckeditor5",
"ckeditor 5",
"ckeditor5-feature",
"ckeditor5-plugin"
],
"dependencies": {
"@ckeditor/ckeditor5-core": "^12.0.0",
"@ckeditor/ckeditor5-ui": "^12.0.0",
"@ckeditor/ckeditor5-utils": "^12.0.0",
"@ckeditor/ckeditor5-widget": "^11.0.0"
},
"devDependencies": {
"@ckeditor/ckeditor5-editor-classic": "^12.0.0",
"@ckeditor/ckeditor5-engine": "^13.0.0",
"eslint": "^5.16.0",
"eslint-config-ckeditor5": "^1.0.13",
"husky": "^1.3.1",
"lint-staged": "^8.1.5"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.7.1"
},
"author": "Didask (https://www.didask.com/)",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/didask/ckeditor5-hr/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/didask/ckeditor5-hr.git"
},
"files": [
"lang",
"src",
"theme"
],
"scripts": {
"lint": "eslint --quiet '**/*.js'"
},
"lint-staged": {
"**/*.js": [
"eslint --quiet"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"homepage": "https://github.com/didask/ckeditor5-hr#readme",
"main": ".eslintrc.js"
}