-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
60 lines (60 loc) · 1.35 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
{
"name": "vue-ua",
"version": "1.7.0",
"description": "Help for Google Universal Analytics in Vue application",
"main": "./dist/vue-analytics.min.js",
"author": "Andréas \"ScreamZ\" Hanss",
"license": "Apache-2.0",
"homepage": "https://github.com/ScreamZ/vue-analytics",
"scripts": {
"build": "webpack",
"lint": "standard",
"pretest": "npm run lint",
"test": "mocha --opts .mocha",
"test:watch": "npm t -- --watch",
"prepublishOnly": "webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/ScreamZ/vue-analytics.git"
},
"bugs": {
"url": "https://github.com/ScreamZ/vue-analytics/issues"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-preset-latest": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"mocha": "^4.0.1",
"sinon": "^4.0.1",
"sinon-chai": "^2.14.0",
"standard": "^10.0.3",
"webpack": "^1.14.0"
},
"keywords": [
"analytics",
"universal analytics",
"google analytics",
"vue analytics",
"vue js analytics",
"vuejs",
"tracking",
"Vue2",
"vue",
"google"
],
"standard": {
"ignore": [
"/node_modules/",
"webpack.config.js"
],
"globals": [
"expect",
"ga"
],
"env": "mocha"
}
}