-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 1.4 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
{
"name": "gatsby-plugin-google-marketing-platform",
"author": "Colby Fayock <[email protected]>",
"version": "0.2.1",
"description": "Gatsby plugin to add different components of the Google Marketing Platform: Tag Manager, Analytics, Optimize",
"keywords": [
"gatsby",
"gatsby-plugin",
"google analytics",
"google tagmanager",
"google optimize"
],
"license": "MIT",
"homepage": "https://github.com/colbyfayock/gatsby-plugin-google-marketing-platform",
"repository": "[email protected]:colbyfayock/gatsby-plugin-google-marketing-platform.git",
"bugs": {
"url": "https://github.com/colbyfayock/gatsby-plugin-google-marketing-platform/issues"
},
"main": "index.js",
"dependencies": {
"common-tags": "^1.8.0"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/runtime": "^7.14.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"babel-preset-gatsby-package": "^1.6.0",
"enzyme": "^3.11.0",
"gatsby": "^3.6.1",
"jest": "^27.0.3",
"jsdom": "^16.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"peerDependencies": {
"gatsby": ">=3.6.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"scripts": {
"build": "babel src --ignore src/pages --out-dir .",
"patch": "npm version patch",
"minor": "npm version minor",
"test": "jest --config ./config/jest.config.js"
}
}