-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.12 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
{
"name": "@linusmelb/ga-protocol",
"version": "1.0.32",
"description": "Javascript Wrapper of Google Analytics Measurement Protocol to easily send pageviews and events to GA",
"main": "dist/index.js",
"typings": "index.d.ts",
"scripts": {
"example": "tsc examples/index.ts --outDir dist --AllowJs && node dist/examples/index.js",
"test": "jest --config ./jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LinusMelb/GA-protocol.git"
},
"author": "XU PENG",
"license": "MIT",
"bugs": {
"url": "https://github.com/LinusMelb/GA-protocol/issues"
},
"homepage": "https://github.com/LinusMelb/GA-protocol#readme",
"dependencies": {
"@types/node": "^14.11.5",
"axios": "^0.20.0"
},
"devDependencies": {
"jest": "^26.5.2",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"directories": {
"example": "examples",
"test": "test"
},
"keywords": [
"google analytics",
"Web tracking",
"Hybird app tracking",
"measurement",
"protocol",
"GA"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}