forked from GitbookIO/plugin-highlight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 914 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
{
"name": "gitbook-plugin-highlightjs",
"description": "highlight.js for GitBook with diff2html",
"main": "index.js",
"version": "2.1.0",
"author": "@milesibastos",
"engines": {
"gitbook": ">=2.4.0"
},
"homepage": "https://github.com/milesibastos/plugin-highlight",
"repository": {
"type": "git",
"url": "https://github.com/milesibastos/plugin-highlight.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/milesibastos/plugin-highlight/issues"
},
"dependencies": {
"cheerio": "^0.22.0",
"diff2html": "^2.3.0",
"highlight.js": "^9.10.0",
"less": "^2.7.2"
},
"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/"
}
}