-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.1 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
{
"name": "@honkit/honkit-plugin-ga",
"version": "1.0.1",
"description": "HonKit plugin for Google Analytics 4.",
"keywords": [
"google",
"ga",
"analytics",
"honkit",
"gitbook"
],
"homepage": "https://github.com/honkit/honkit-plugin-ga",
"bugs": {
"url": "https://github.com/honkit/honkit-plugin-ga/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/honkit/honkit-plugin-ga.git"
},
"license": "MIT",
"author": "azu",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"index.js",
"assets/"
],
"scripts": {
"test": "cd example && npm install && npm run build"
},
"publishConfig": {
"access": "public"
},
"engines": {
"honkit": ">=3.0.0"
},
"honkit": {
"properties": {
"trackingID": {
"type": "string",
"title": "Google Analytics Tracking Id",
"required": true
},
"anonymizeIP": {
"type": "boolean",
"title": "Whether the IP should be anonymized when sending requests.",
"default": false
}
}
}
}