forked from MatteoGabriele/vue-gtag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.43 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
86
87
88
89
{
"name": "vue-gtag",
"description": "Global Site Tag (gtag.js) plugin for Vue",
"version": "0.0.0-development",
"author": {
"name": "Matteo Gabriele",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MatteoGabriele/vue-gtag"
},
"scripts": {
"commit": "git-cz",
"build": "webpack --mode production",
"dev": "webpack --mode development --watch",
"lint": "eslint src --ext .js",
"lint:fix": "eslint src --ext .js --fix",
"test": "jest",
"test:ci": "jest --coverage --bail --runInBand --verbose=false",
"coverage": "jest --coverage",
"coverage:html": "jest --coverage --coverageReporters=html",
"coverage:text": "jest --coverage --coverageReporters=text",
"coverage:lcov": "jest --coverage --coverageReporters=lcov",
"prepublishOnly": "yarn lint && yarn test && webpack --mode production",
"semantic-release": "semantic-release"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"json",
"html"
],
"moduleNameMapper": {
"@/(.*)$": "<rootDir>/src/$1"
}
},
"keywords": [
"google",
"google analytics",
"tracking",
"google tracking",
"vue-analytics",
"vue-gtag",
"gtag",
"gtag.js",
"global site tag",
"vue",
"vuejs"
],
"main": "dist/vue-gtag.js",
"bugs": {
"url": "https://github.com/MatteoGabriele/vue-gtag/issues"
},
"homepage": "https://github.com/MatteoGabriele/vue-gtag#readme",
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"commitizen": "^4.0.3",
"compression-webpack-plugin": "^3.0.0",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.7.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-jest": "^23.0.4",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.0.1",
"flush-promises": "^1.0.2",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"semantic-release": "^15.13.31",
"terser-webpack-plugin": "^2.2.1",
"vue": "^2.6.10",
"vue-router": "^3.1.3",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
}
}