This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
forked from snowplow/snowplow-javascript-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.06 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
{
"name": "snowplow-tracker",
"version": "2.14.0",
"dependencies": {
"jstimezonedetect": "1.0.5",
"sha1": "git://github.com/pvorb/node-sha1.git#910081c83f3661507d9d89e66e3f38d8b59d5559",
"snowplow-tracker-core": "^0.7.2",
"uuid": "^3.3.3"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/register": "^7.6.2",
"@wdio/cli": "^5.15.0",
"@wdio/jasmine-framework": "^5.15.0",
"@wdio/local-runner": "^5.15.0",
"@wdio/sauce-service": "^5.14.0",
"@wdio/spec-reporter": "^5.14.5",
"@wdio/static-server-service": "^5.14.4",
"@wdio/sync": "^5.14.4",
"JSON": "1.0.0",
"chromedriver": "^77.0.0",
"dockerode": "^3.0.2",
"grunt": "^1.0.4",
"grunt-aws": "^0.7.1",
"grunt-babel": "^8.0.0",
"grunt-browserify": "^5.3.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-uglify": "^4.0.1",
"jest": "^24.9.0",
"jest-date-mock": "^1.0.7",
"jest-dev-server": "^4.3.0",
"js-base64": "^2.4.9",
"lodash": "^4.17.15",
"moment-timezone": "^0.5.26",
"npm-check": "^5.9.0",
"prettier": "^1.18.2",
"saucelabs": "^3.0.0",
"semver": "^6.3.0",
"wdio-chromedriver-service": "^5.0.2"
},
"contributors": [
"Alex Dean",
"Simon Andersson",
"Anthon Pang",
"Fred Blundun",
"Joshua Beemster",
"Michael Hadam",
"Paul Boocock"
],
"description": "JavaScript tracker for Snowplow",
"repository": {
"type": "git",
"url": "https://github.com/snowplow/snowplow-javascript-tracker.git"
},
"bugs": "https://github.com/snowplow/snowplow-javascript-tracker/issues",
"keywords": [
"tracking",
"web analytics",
"events",
"open source"
],
"license": "Simplified BSD",
"private": true,
"scripts": {
"test:unit": "jest tests/unit/*.spec.js",
"test:e2e:sauce": "docker pull snowplow/snowplow-micro && wdio tests/wdio.sauce.conf.js",
"test:e2e:local": "docker pull snowplow/snowplow-micro && wdio tests/wdio.local.conf.js"
},
"jest": {
"setupFiles": [
"jest-date-mock"
]
}
}