-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.8 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.8 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "gitbook-plugin-diff",
"version": "0.1.0",
"description": "A gitbook plugin for showing the differences between the codes within markdown",
"main": "index.js",
"engines": {
"gitbook": ">=2.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/snowdreams1006/gitbook-plugin-diff.git"
},
"keywords": [
"gitbook-plugin-diff",
"gitbook-plugin",
"diff",
"jsdiff",
"compare",
"code"
],
"gitbook": {
"properties": {
"type": {
"type": "string",
"title": "render type",
"required": false,
"default": "markdown",
"description": "some supported methods such as markdown or console or html"
},
"method": {
"type": "string",
"title": "jsdiff api method",
"required": false,
"default": "diffChars",
"description": "some supported methods such as diffChars or diffWords or diffWordsWithSpace or diffLines or diffTrimmedLines or diffSentences or diffJson or diffArrays"
},
"options": {
"type": "object",
"title": "jsdiff api options",
"required": false,
"description": "some methods may not support options"
}
}
},
"author": {
"name": "snowdreams1006",
"email": "snowdreams1006@163.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/snowdreams1006/gitbook-plugin-diff/issues"
},
"homepage": "https://github.com/snowdreams1006/gitbook-plugin-diff#readme",
"dependencies": {
"diff": "^4.0.2",
"colors": "^1.4.0"
}
}