This repository has been archived by the owner on Jun 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 132
/
package.json
63 lines (63 loc) · 1.53 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
{
"name": "vue-analytics",
"version": "0.0.0-development",
"description": "Google Analytics plugin for Vue",
"repository": {
"type": "git",
"url": "https://github.com/MatteoGabriele/vue-analytics"
},
"scripts": {
"commit": "git-cz",
"build": "webpack --mode production",
"dev": "webpack --mode development --watch",
"test": "jest",
"prepublish": "webpack --mode production",
"semantic-release": "semantic-release"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"keywords": [
"Google",
"google",
"Google Analytics",
"google analytics",
"tracking",
"google tracking",
"vue-analytics",
"vue"
],
"main": "dist/vue-analytics.js",
"types": "vue-analytics.d.ts",
"files": [
"dist",
"vue-analytics.d.ts"
],
"author": {
"name": "Matteo Gabriele",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/MatteoGabriele/vue-analytics/issues"
},
"homepage": "https://github.com/MatteoGabriele/vue-analytics#readme",
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"babel-loader": "^8.0.6",
"commitizen": "^4.0.3",
"compression-webpack-plugin": "^3.0.0",
"cz-conventional-changelog": "^3.0.2",
"jest": "^24.9.0",
"semantic-release": "^15.13.30",
"terser-webpack-plugin": "^2.2.1",
"vue": "^2.6.10",
"vue-router": "^3.1.3",
"vuex": "^3.1.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
}
}