forked from NodeBB/nodebb-plugin-emoji
-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.json
42 lines (42 loc) · 1014 Bytes
/
plugin.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
{
"id": "nodebb-plugin-emoji-extended-openshift",
"name": "NodeBB Emoji Extended Openshift",
"description": "Emoji for NodeBB with emoticon-mapping and text-completion :)\nKnown Conflicts: nodebb-plugin-emoji",
"url": "https://github.com/liam-middlebrook/nodebb-plugin-emoji-extended",
"library": "./index.js",
"staticDirs": {
"images": "./emoji"
},
"less": [
"./styles/style.less"
],
"scripts": [
"./client-scripts/lib/jquery.textcomplete.min.js",
"./client-scripts/emoji-textcomplete.js"
],
"templates": "./templates",
"hooks": [
{
"hook": "filter:parse.raw",
"method": "parse",
"priority": 9
},
{
"hook": "filter:parse.post",
"method": "parseDataContent",
"priority": 9
},
{
"hook": "filter:admin.header.build",
"method": "adminBuild"
},
{
"hook": "filter:composer.help",
"method": "composerHelp"
},
{
"hook": "static:app.load",
"method": "appLoad"
}
]
}