forked from codler/react-ga4
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 990 Bytes
/
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
{
"name": "react-ga-neo",
"version": "2.2.0",
"description": "Google Analytics 4 in React",
"main": "dist/index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "NODE_ENV=production babel src -d dist",
"postbuild": "tsc src/index.js --declaration --allowJs --emitDeclarationOnly --outDir types",
"preversion": "yarn test",
"prepublishOnly": "yarn run build && yarn test",
"test": "NODE_ENV=test jest"
},
"author": "Enrico Lamperti",
"license": "MIT",
"keywords": [
"GA",
"GTM",
"Google Analytics",
"Google Analytics 4",
"Google Tag Manager"
],
"repository": {
"type": "git",
"url": "git+https://github.com/elamperti/react-ga-neo.git"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"babel-jest": "^29.3.1",
"jest": "^29.3.1",
"typescript": "^4.9.4"
},
"jest": {
"testPathIgnorePatterns": [
"dist"
]
}
}