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
69 lines (69 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.7 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
62
63
64
65
66
67
68
69
{
"name": "@snowplow/tracker-core",
"version": "3.1.0",
"description": "Core functionality for Snowplow JavaScript trackers",
"keywords": [
"tracking",
"web analytics",
"events",
"open source"
],
"homepage": "http://bit.ly/sp-js",
"bugs": "https://github.com/snowplow/snowplow-javascript-tracker/issues",
"repository": {
"type": "git",
"url": "https://github.com/snowplow/snowplow-javascript-tracker.git"
},
"license": "BSD-3-Clause",
"contributors": [
"Alex Dean",
"Simon Andersson",
"Fred Blundun",
"Paul Boocock"
],
"sideEffects": false,
"main": "./dist/index.js",
"umd:main": "./dist/index.js",
"jsdelivr": "./dist/index.umd.js",
"unpkg": "./dist/index.umd.js",
"module": "./dist/index.module.js",
"types": "./dist/index.module.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c --silent --failAfterWarnings",
"test": "ava"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"dependencies": {
"tslib": "^2.1.0",
"uuid": "^3.4.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@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.10",
"ava": "^3.13.0",
"eslint": "^7.7.0",
"jest-standard-reporter": "^2.0.0",
"rollup": "^2.41.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-license": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}