forked from mib200/vue-gtm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.96 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "vue-gtm",
"version": "3.3.1",
"description": "Google Tag Manager implementation in Vue application",
"main": "dist/index.js",
"author": {
"name": "Manish Kumar",
"url": "https://github.com/mib200"
},
"contributors": [
{
"name": "Christopher Quadflieg",
"email": "chrissi92@hotmail.de",
"url": "https://github.com/Shinigami92"
}
],
"license": "Apache-2.0",
"homepage": "https://github.com/mib200/vue-gtm",
"scripts": {
"clean": "rm -Rf dist yarn.lock node_modules",
"build": "tsc",
"format": "prettier --write .",
"lint": "yarn lint:src",
"lint:src": "eslint --ext .ts src",
"lint:test": "eslint --ext .test.ts tests",
"test": "jest",
"prepublishOnly": "yarn clean && yarn install --cache-folder .yarn && yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/mib200/vue-gtm.git"
},
"bugs": {
"url": "https://github.com/mib200/vue-gtm/issues"
},
"keywords": [
"analytics",
"universal analytics",
"google analytics",
"google tag manager",
"vue analytics",
"vue tag manager",
"vue google tag manager",
"vue js google tag manager",
"vuejs google tag manager",
"vue js analytics",
"vue gtm",
"vuejs gtm",
"vue js gtm",
"vuejs",
"tracking",
"vue",
"google"
],
"files": [
"dist",
"src",
"tsconfig.json"
],
"dependencies": {
"url-search-params-polyfill": "^8.1.0"
},
"devDependencies": {
"@types/jest": "~26.0.20",
"@typescript-eslint/eslint-plugin": "~4.14.0",
"@typescript-eslint/parser": "~4.14.0",
"eslint": "~7.18.0",
"eslint-config-prettier": "~7.2.0",
"eslint-plugin-prettier": "~3.3.1",
"jest": "~26.6.3",
"jest-junit": "~12.0.0",
"prettier": "2.2.1",
"prettier-plugin-organize-imports": "~1.1.1",
"ts-jest": "~26.4.4",
"typescript": "^4.1.3",
"vue": "^3.0.0"
},
"peerDependencies": {
"vue": "^3.0.0"
}
}