forked from GitbookIO/plugin-hints
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.18 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.18 KB
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
{
"name": "gitbook-plugin-hints",
"description": "Defines four types of styled hint blocks: info, danger, tip, working.",
"main": "index.js",
"version": "1.0.2",
"engines": {
"gitbook": ">2.x.x"
},
"license": "Apache 2.0",
"homepage": "https://github.com/GitbookIO/plugin-hints",
"repository": {
"type": "git",
"url": "https://github.com/GitbookIO/plugin-hints.git"
},
"gitbook": {
"properties": {
"info": {
"type": "string",
"title": "CSS class for the 'info' icons",
"default": "fa fa-info-circle"
},
"tip": {
"type": "string",
"title": "CSS class for the 'tip' icons",
"default": "fa fa-mortar-board"
},
"danger": {
"type": "string",
"title": "CSS class for the 'danger' icons",
"default": "fa fa-exclamation-circle"
},
"working": {
"type": "string",
"title": "CSS class for the 'working' icons",
"default": "fa fa-wrench"
}
}
}
}