-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
{
"name": "gatsby-plugin-gdpr-tracking",
"description": "Gatsby Plugin to add analytics and tracking services: Google Analytics, Google Ads and Hotjar in a gdpr form.",
"version": "1.2.2",
"author": "Andreas Straub",
"bugs": {
"url": "https://github.com/andreas-straub/gatsby-plugin-gdpr-tracking/issues"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"js-cookie": "^2.2.1"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"babel-preset-gatsby-package": "^0.5.2",
"cross-env": "^7.0.2"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"google analytics",
"hotjar",
"google ads",
"gdpr",
"DSGVO"
],
"main": "index.js",
"peerDependencies": {
"gatsby": "^2.20.12",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"repository": {
"type": "git",
"url": "https://github.com/andreas-straub/gatsby-plugin-gdpr-tracking.git"
},
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"test": "echo \"Tests are not exits yet!\""
},
"engines": {
"node": ">=8.0.0"
},
"license": "MIT"
}