-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "gitbook-plugin-ga",
"title": "Google Analytics",
"description": "Track page views of your book into Google Analytics",
"main": "index.js",
"icon": "./icon.png",
"browser": "./_assets/plugin.js",
"version": "2.0.0",
"engines": {
"gitbook": ">=4.0.0-alpha.0"
},
"devDependencies": {
"gitbook-plugin": "^4.0.0-alpha.4"
},
"scripts": {
"prepublish": "gitbook-plugin build ./src/index.js ./_assets/plugin.js"
},
"homepage": "https://github.com/GitbookIO/plugin-ga",
"repository": {
"type": "git",
"url": "https://github.com/GitbookIO/plugin-ga.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GitbookIO/plugin-ga/issues"
},
"gitbook": {
"properties": {
"token": {
"type": "string",
"title": "Tracking ID",
"required": true
},
"configuration": {
"type": "string",
"title": "Configuration mode",
"default": "auto"
}
}
}
}