-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
64 lines (64 loc) · 1.55 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
{
"name": "@wwalc/ckeditor5-emoji",
"version": "11.0.2",
"description": "Emoji feature for CKEditor 5.",
"keywords": [
"ckeditor5",
"ckeditor5-feature",
"ckeditor",
"ckeditor 5",
"emoji",
"smiley",
"emoticons"
],
"peerDependencies": {
"@ckeditor/ckeditor5-core": ">=10.0.0",
"@ckeditor/ckeditor5-engine": ">=10.0.0",
"@ckeditor/ckeditor5-ui": ">=10.0.0"
},
"devDependencies": {
"@ckeditor/ckeditor5-basic-styles": "^10.0.2",
"@ckeditor/ckeditor5-clipboard": "^10.0.2",
"@ckeditor/ckeditor5-editor-classic": "^11.0.0",
"@ckeditor/ckeditor5-enter": "^10.1.1",
"@ckeditor/ckeditor5-essentials": "^10.1.1",
"@ckeditor/ckeditor5-heading": "^10.0.2",
"@ckeditor/ckeditor5-list": "^11.0.1",
"@ckeditor/ckeditor5-paragraph": "^10.0.2",
"@ckeditor/ckeditor5-typing": "^11.0.0",
"@ckeditor/ckeditor5-undo": "^10.0.2",
"eslint": "^4.15.0",
"eslint-config-ckeditor5": "^1.0.7",
"husky": "^0.14.3",
"lint-staged": "^7.0.0"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
},
"author": "Wiktor Walc",
"license": "(GPL-2.0-or-later)",
"bugs": "https://github.com/wwalc/ckeditor5-emoji/issues",
"repository": {
"type": "git",
"url": "https://github.com/wwalc/ckeditor5-emoji.git"
},
"files": [
"lang",
"src",
"theme"
],
"scripts": {
"lint": "eslint --quiet '**/*.js'",
"precommit": "lint-staged"
},
"lint-staged": {
"**/*.js": [
"eslint --quiet"
]
},
"eslintIgnore": [
"src/lib/**",
"packages/**"
]
}