-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
35 lines (35 loc) · 899 Bytes
/
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
{
"name": "gitbook-plugin-comment",
"description": "Inline comments with gitbook.com",
"main": "index.js",
"version": "1.0.5",
"license": "Apache-2.0",
"homepage": "https://github.com/GitbookIO/plugin-comment",
"engines": {
"gitbook": ">=3.0.0-pre.0"
},
"devDependencies": {
"eslint": "2.7.0",
"less": "2.5.1",
"minifier": "0.7.1"
},
"repository": {
"type": "git",
"url": "https://github.com/GitbookIO/plugin-comment.git"
},
"bugs": {
"url": "https://github.com/GitbookIO/plugin-comment/issues"
},
"gitbook": {
"properties": {
"highlightCommented": {
"type": "boolean",
"title": "Highlight sections that are commented",
"default": true
}
}
},
"scripts": {
"prepublish": "mkdir -p assets; lessc ./less/main.less > ./assets/plugin.css; minify --output ./assets/plugin.js ./js/main.js"
}
}