-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
122 lines (122 loc) · 4.19 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@linhx/ckeditor5-emoji2",
"version": "0.0.1",
"description": "Inserting an image as emoji to CKEditor 5.",
"author": {
"name": "linhx",
"email": "nguyendinhlinhx@gmail.com",
"url": "https://profile.linhx.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linhx/ckeditor5-emoji2.git"
},
"keywords": [
"ckeditor",
"ckeditor5",
"ckeditor 5",
"ckeditor5-feature",
"ckeditor5-plugin",
"ckeditor5-dll",
"ckeditor5-package-generator",
"ckeditor5-emoji"
],
"main": "src/index.ts",
"license": "MIT",
"engines": {
"node": ">=14.0.0",
"npm": ">=5.7.1"
},
"files": [
"lang",
"src/**/*.js",
"src/**/*.d.ts",
"theme",
"build",
"ckeditor5-metadata.json"
],
"dependencies": {
"ckeditor5": ">=35.3.1"
},
"devDependencies": {
"@ckeditor/ckeditor5-autoformat": ">=35.3.1",
"@ckeditor/ckeditor5-basic-styles": ">=35.3.1",
"@ckeditor/ckeditor5-block-quote": ">=35.3.1",
"@ckeditor/ckeditor5-code-block": ">=35.3.1",
"@ckeditor/ckeditor5-core": ">=35.3.1",
"@ckeditor/ckeditor5-editor-classic": ">=35.3.1",
"@ckeditor/ckeditor5-essentials": ">=35.3.1",
"@ckeditor/ckeditor5-heading": ">=35.3.1",
"@ckeditor/ckeditor5-image": ">=35.3.1",
"@ckeditor/ckeditor5-indent": ">=35.3.1",
"@ckeditor/ckeditor5-inspector": ">=4.1.0",
"@ckeditor/ckeditor5-link": ">=35.3.1",
"@ckeditor/ckeditor5-list": ">=35.3.1",
"@ckeditor/ckeditor5-media-embed": ">=35.3.1",
"@ckeditor/ckeditor5-package-tools": "^1.0.0-beta.6",
"@ckeditor/ckeditor5-paragraph": ">=35.3.1",
"@ckeditor/ckeditor5-table": ">=35.3.1",
"@ckeditor/ckeditor5-theme-lark": ">=35.3.1",
"@ckeditor/ckeditor5-upload": ">=35.3.1",
"@ckeditor/ckeditor5-widget": "^35.3.1",
"@types/chai": "^4.3.1",
"@types/ckeditor__ckeditor5-autoformat": "latest",
"@types/ckeditor__ckeditor5-basic-styles": "latest",
"@types/ckeditor__ckeditor5-block-quote": "latest",
"@types/ckeditor__ckeditor5-code-block": "latest",
"@types/ckeditor__ckeditor5-core": "latest",
"@types/ckeditor__ckeditor5-editor-classic": "latest",
"@types/ckeditor__ckeditor5-essentials": "latest",
"@types/ckeditor__ckeditor5-heading": "latest",
"@types/ckeditor__ckeditor5-image": "latest",
"@types/ckeditor__ckeditor5-indent": "latest",
"@types/ckeditor__ckeditor5-link": "latest",
"@types/ckeditor__ckeditor5-list": "latest",
"@types/ckeditor__ckeditor5-media-embed": "latest",
"@types/ckeditor__ckeditor5-paragraph": "latest",
"@types/ckeditor__ckeditor5-table": "latest",
"@types/ckeditor__ckeditor5-ui": "latest",
"@types/ckeditor__ckeditor5-upload": "latest",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^7.32.0",
"eslint-config-ckeditor5": ">=4.1.1",
"http-server": "^14.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.6",
"stylelint": "^13.13.1",
"stylelint-config-ckeditor5": ">=4.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"scripts": {
"ts:build": "tsc -p ./tsconfig.release.json",
"ts:clear": "npx rimraf \"src/**/*.@(js|d.ts)\"",
"dll:build": "ckeditor5-package-tools dll:build",
"lint": "eslint \"**/*.{js,ts}\" --quiet --ignore-pattern \"build/\"",
"start": "ckeditor5-package-tools start",
"stylelint": "stylelint --quiet --allow-empty-input 'theme/**/*.css'",
"test": "ckeditor5-package-tools test",
"prepare": "yarn run dll:build",
"prepublishOnly": "yarn run ts:build && ckeditor5-package-tools export-package-as-javascript",
"postpublish": "yarn run ts:clear && ckeditor5-package-tools export-package-as-typescript",
"translations:collect": "ckeditor5-package-tools translations:collect",
"translations:download": "ckeditor5-package-tools translations:download",
"translations:upload": "ckeditor5-package-tools translations:upload"
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint --quiet"
],
"**/*.css": [
"stylelint --quiet --allow-empty-input"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}