This repository has been archived by the owner on Apr 8, 2021. It is now read-only.
forked from snowplow/snowplow-javascript-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.28 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.17.3",
"scripts": {
"build": "gulp build",
"build:all": "(cd core && npm run build) && npm run build",
"test:unit": "jest tests/unit/*.spec.js",
"test:e2e:sauce": "gulp testEndToEnd && wdio tests/wdio.sauce.conf.js",
"test:e2e:local": "gulp testEndToEnd && wdio tests/wdio.local.conf.js"
},
"dependencies": {
"jstimezonedetect": "1.0.5",
"lodash": "^4.17.20",
"sha1": "git://github.com/pvorb/node-sha1.git#910081c83f3661507d9d89e66e3f38d8b59d5559",
"snowplow-tracker-core": "file:./core",
"uuid": "^3.3.3"
},
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "^0.26.0",
"@babel/core": "^7.12.9",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/register": "^7.12.1",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@types/babel__core": "^7.1.12",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.161",
"@wdio/cli": "^6.12.1",
"@wdio/jasmine-framework": "^6.11.0",
"@wdio/local-runner": "^6.12.1",
"@wdio/sauce-service": "^6.12.1",
"@wdio/spec-reporter": "^6.11.0",
"@wdio/static-server-service": "^6.10.10",
"@wdio/sync": "^6.11.0",
"chromedriver": "^87.0.0",
"dockerode": "^3.2.1",
"gulp": "^4.0.2",
"jest": "^26.6.3",
"moment-timezone": "^0.5.26",
"prettier": "^2.1.1",
"rollup": "^2.34.0",
"rollup-plugin-banner": "^0.2.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-sizes": "^1.0.3",
"saucelabs": "^4.6.5",
"wdio-chromedriver-service": "^6.0.4"
},
"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
}