-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
72 lines (72 loc) · 1.9 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"title": "Disqus",
"name": "gitbook-plugin-disqus",
"description": "Disqus comments thread in the footer of your pages",
"icon": "./icon.png",
"main": "index.js",
"browser": "./_assets/plugin.js",
"version": "1.0.1",
"engines": {
"gitbook": ">=4.0.0-alpha"
},
"dependencies": {
"react": "^15.3.2",
"react-disqus-thread": "^0.4.0"
},
"devDependencies": {
"gitbook-plugin": "^4.0.0-alpha.0",
"eslint": "3.7.1",
"eslint-config-gitbook": "1.4.0"
},
"homepage": "https://github.com/GitbookIO/plugin-disqus",
"repository": {
"type": "git",
"url": "https://github.com/GitbookIO/plugin-disqus.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GitbookIO/plugin-disqus/issues"
},
"keywords": [
"gitbook:social"
],
"scripts": {
"build-js": "gitbook-plugin build ./src/index.js ./_assets/plugin.js",
"prepublish": "npm run build-js"
},
"gitbook": {
"properties": {
"shortName": {
"type": "string",
"title": "Website Shortname",
"description": "Unique identifier for your website as registered on Disqus",
"required": true
},
"useIdentifier": {
"type": "boolean",
"title": "Pass page identifier option to Disqus",
"default": false
}
},
"page": {
"title": "Disqus configuration for this page",
"properties": {
"disqus": {
"type": "object",
"properties" : {
"enabled": {
"type": "boolean",
"title": "Enable Disqus comments for this page.",
"default": true
},
"identifier": {
"type": "string",
"title": "Identifier for this page.",
"description": "Tells the Disqus service how to identify the current page"
}
}
}
}
}
}
}