-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
47 lines (47 loc) · 1.15 KB
/
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
47
{
"title": "GitHub",
"name": "gitbook-plugin-github",
"version": "3.0.0",
"icon": "./icon.png",
"description": "Integrate your website with your GitHub repository.",
"main": "index.js",
"browser": "./_assets/plugin.js",
"authors": [
{
"name": "Michael Jackson"
},
{
"name": "Samy Pessé",
"email": "[email protected]"
}
],
"devDependencies": {
"gitbook-plugin": "^4.0.0-alpha.0",
"eslint": "^3.7.1",
"eslint-config-gitbook": "^1.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/GitbookIO/plugin-github.git"
},
"license": "Apache-2.0",
"engines": {
"gitbook": ">=4.0.0-alpha.0"
},
"keywords": [
"gitbook:social"
],
"scripts": {
"build-js": "gitbook-plugin build ./src/index.js ./_assets/plugin.js",
"prepublish": "npm run build-js"
},
"gitbook": {
"properties": {
"url": {
"type": "string",
"required": true,
"title": "URL of your GitHub repository"
}
}
}
}