-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.31 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
{
"name": "ga4-action",
"version": "1.0.0",
"description": "A GitHub Action for sending offline events to Google Analytics 4 from your repository workflows.",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"predist": "tsc ./src/*.ts --outdir ./build/",
"dist": "ncc build build/index.js --license licenses.txt --minify",
"lint": "eslint --fix src/* tests/*",
"check-lint": "eslint src/* tests/*",
"clean": "rimraf dist coverage build *.log"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dylan700/ga4-action.git"
},
"author": "Dylan700",
"license": "ISC",
"bugs": {
"url": "https://github.com/Dylan700/ga4-action/issues"
},
"homepage": "https://github.com/Dylan700/ga4-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@google-analytics/admin": "^4.3.1",
"axios": "^1.2.2"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@vercel/ncc": "^0.36.0",
"eslint": "^8.31.0",
"jest": "^29.3.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}