forked from snowplow/snowplow-javascript-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.36 KB
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
{
"name": "snowplow-tracker-core",
"version": "0.10.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "ava"
},
"files": [
"dist"
],
"dependencies": {
"lodash": "^4.17.20",
"tslib": "^2.0.3",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/lodash": "^4.14.160",
"@types/node": "^14.6.0",
"@types/uuid": "^3.4.6",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"@wessberg/rollup-plugin-ts": "^1.3.8",
"ava": "^3.13.0",
"eslint": "^7.7.0",
"prettier": "^2.1.1",
"rollup": "^2.34.0",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"contributors": [
"Alex Dean",
"Simon Andersson",
"Fred Blundun",
"Paul Boocock"
],
"description": "Core functionality for the Snowplow JavaScript trackers (Browser, Node.js)",
"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": "Apache-2.0",
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}