forked from GitbookIO/plugin-highlight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 863 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
{
"name": "gitbook-plugin-highlight",
"description": "Default code highlighter for GitBook",
"main": "index.js",
"version": "2.0.3",
"engines": {
"gitbook": ">=2.4.0"
},
"homepage": "https://github.com/GitbookIO/plugin-highlight",
"repository": {
"type": "git",
"url": "https://github.com/GitbookIO/plugin-highlight.git"
},
"license": "Apache 2",
"bugs": {
"url": "https://github.com/GitbookIO/plugin-highlight/issues"
},
"dependencies": {
"highlight.js": "9.8.0"
},
"devDependencies": {
"less": "2.7.1",
"mocha":"3.2.0",
"gitbook-tester":"1.4.3"
},
"scripts": {
"prepublish": "mkdir -p css && lessc ./less/website.less > ./css/website.css; lessc ./less/ebook.less > ./css/ebook.css",
"test": "mocha test/"
}
}