forked from GitbookIO/plugin-lunr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.01 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
40
{
"name": "gitbook-plugin-lunr",
"description": "Index book in a lunr index accessible from the search plugin",
"main": "index.js",
"version": "1.2.0",
"engines": {
"gitbook": ">=3.0.0-pre.0"
},
"dependencies": {
"gitbook-plugin-search": "*",
"html-entities": "1.2.0",
"lunr": "0.5.12"
},
"homepage": "https://github.com/GitbookIO/plugin-lunr",
"repository": {
"type": "git",
"url": "https://github.com/GitbookIO/plugin-lunr.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GitbookIO/plugin-lunr/issues"
},
"gitbook": {
"properties": {
"maxIndexSize": {
"type": "number",
"title": "Limit size for the index",
"default": 1000000
},
"ignoreSpecialCharacters": {
"type": "boolean",
"title": "Ignore special characters in words",
"default": false
}
}
},
"scripts": {
"prepublish": "cp node_modules/lunr/lunr.min.js ./assets/lunr.min.js"
}
}