-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·44 lines (44 loc) · 1.27 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
{
"name": "gitbook-plugin-piwik",
"description": "Piwik tracking for your gitbook",
"main": "index.js",
"version": "0.2.1",
"engines": {
"gitbook": ">=3.0.0-pre.0"
},
"homepage": "https://github.com/emmanuel-keller/gitbook-plugin-piwik",
"repository": {
"type": "git",
"url": "https://github.com/emmanuel-keller/gitbook-plugin-piwik.git"
},
"license": "Apache 2",
"bugs": {
"url": "https://github.com/emmanuel-keller/gitbook-plugin-piwik/issues"
},
"gitbook": {
"properties": {
"URL": {
"type": "string",
"description": "Piwik instance URL",
"required": true
},
"siteId": {
"type": "number",
"description": "Site Tracking ID",
"required": true
},
"jsPath": {
"type": "string",
"description": "Path of .js file",
"required": false,
"default": "piwik.js"
},
"phpPath": {
"type": "string",
"description": "Path of .php file",
"required": false,
"default": "piwik.php"
}
}
}
}