forked from AbnerXin/gitbook-plugin-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 965 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
36
37
38
39
40
41
42
43
44
45
46
{
"name": "gitbook-plugin-i18n",
"description": "implement i18n according different url",
"main": "index.js",
"version": "1.0.0",
"dependencies": {
"lodash": "^3.10.1"
},
"engines": {
"gitbook": ">=2.4.0"
},
"homepage": "https://github.com/AbnerXin/gitbook-plugin-i18n",
"repository": {
"type": "git",
"url": "https://github.com/AbnerXin/gitbook-plugin-i18n.git"
},
"license": "Apache-2.0",
"gitbook": {
"properties": {
"all": {
"default": [
"chinese",
"english"
],
"items": {
"type": "string"
},
"type": "array",
"uniqueItems": true
},
"EnglishUrl": {
"title": "english",
"type": "string",
"default": "../en-US"
},
"ChineseUrl": {
"title": "chinese",
"type": "string",
"default": "../zh-CN"
}
}
},
"devDependencies": {
"eslint": "^2.7.0"
}
}