-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
85 lines (85 loc) · 2.03 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
82
83
84
85
{
"name": "vue-gtm",
"version": "3.5.0",
"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": "[email protected]",
"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": "eslint .",
"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.21",
"@typescript-eslint/eslint-plugin": "~4.19.0",
"@typescript-eslint/parser": "~4.19.0",
"eslint": "~7.22.0",
"eslint-config-prettier": "~8.1.0",
"eslint-plugin-jsdoc": "~32.3.0",
"eslint-plugin-prettier": "~3.3.1",
"eslint-plugin-spellcheck": "~0.0.17",
"jest": "~26.6.3",
"jest-junit": "~12.0.0",
"prettier": "2.2.1",
"prettier-plugin-organize-imports": "~1.1.1",
"ts-jest": "~26.5.4",
"typescript": "~4.2.3",
"vue": "^3.0.0",
"vue-router": "^4.0.0"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"optionalDependencies": {
"vue-router": "^4.0.0"
}
}