forked from PriceRunner/react-ga4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 958 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
{
"name": "react-ga4",
"version": "1.4.1",
"description": "React Google Analytics 4",
"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",
"prepublish": "npm run build && npm test",
"test": "NODE_ENV=test jest"
},
"author": "Han Lin Yap (https://yap.nu)",
"license": "MIT",
"keywords": [
"GA",
"GTM",
"Google Analytics",
"Google Analytics 4",
"Google Tag Manager"
],
"repository": {
"type": "git",
"url": "git+https://github.com/PriceRunner/react-ga4.git"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"babel-jest": "^27.3.1",
"jest": "^27.3.1",
"typescript": "^4.4.4"
},
"jest": {
"testPathIgnorePatterns": [
"dist"
]
}
}