forked from sergiodxa/next-ga
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 874 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 874 Bytes
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
{
"name": "next-ga",
"version": "2.3.4",
"main": "index.js",
"repository": "https://github.com/sergiodxa/next-ga.git",
"author": "Sergio Xalambrí <sergiodxa@gmail.com> (https://sergiodxa.com)",
"license": "MIT",
"keywords": [
"nextjs",
"react",
"analytics",
"ga",
"google analytics",
"hoc",
"high order component"
],
"scripts": {
"build": "babel src -d dist",
"prepublish": "npm run build"
},
"dependencies": {
"debug": "^4.0.0",
"react-ga": "^2.5.3"
},
"peerDependencies": {
"next": "^6.0.0 || ^7.0.0",
"react": "^16.0.0"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.3.0",
"@babel/plugin-proposal-object-rest-spread": "7.3.1",
"@babel/preset-env": "7.3.1",
"babel-preset-minify": "0.5.0"
}
}