-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
114 lines (114 loc) · 2.91 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"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"
},
"release": {
"branches": ["master", "next"]
},
"scripts": {
"commit": "git-cz",
"clean": "del-cli dist",
"prebuild": "yarn clean",
"build": "bili",
"dev": "NODE_ENV=dev bili --watch",
"lint": "eslint --ext .js .",
"lint:fix": "yarn lint --fix",
"test": "TZ=UTC jest",
"test:ci": "TZ=UTC jest --coverage --bail --runInBand --verbose=false",
"coverage": "TZ=UTC jest --coverage",
"coverage:html": "TZ=UTC jest --coverage --coverageReporters=html",
"coverage:text": "TZ=UTC jest --coverage --coverageReporters=text",
"coverage:lcov": "TZ=UTC jest --coverage --coverageReporters=lcov",
"prepublishOnly": "TZ=UTC yarn lint && yarn test && yarn build",
"semantic-release": "semantic-release"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"jest": {
"setupFiles": [
"<rootDir>/jest/init.js"
],
"testMatch": [
"**/test/**/*.spec.js"
],
"setupFilesAfterEnv": [
"jest-extended"
],
"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",
"module": "./dist/vue-gtag.esm.js",
"unpkg": "./dist/vue-gtag.umd.js",
"jsdelivr": "./dist/vue-gtag.umd.js",
"types": "vue-gtag.d.ts",
"files": [
"dist",
"vue-gtag.d.ts"
],
"bugs": {
"url": "https://github.com/MatteoGabriele/vue-gtag/issues"
},
"homepage": "https://github.com/MatteoGabriele/vue-gtag#readme",
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"babel-eslint": "^10.0.3",
"bili": "^5.0.5",
"commitizen": "^4.0.3",
"core-js": "^3.10.1",
"cz-conventional-changelog": "^3.0.2",
"del-cli": "^3.0.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^7.9.0",
"flush-promises": "^1.0.2",
"jest": "^26.0.1",
"jest-extended": "^0.11.5",
"mockdate": "^3.0.5",
"prettier": "^2.0.5",
"regenerator-runtime": "^0.13.7",
"rollup-plugin-alias": "^2.2.0",
"rollup-plugin-resolve": "^0.0.1-predev.1",
"semantic-release": "^15.13.31",
"vue": "^3.0.0",
"vue-router": "^4.0.6",
"vue-template-compiler": "^2.6.10"
}
}