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
37 lines (37 loc) · 993 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 993 Bytes
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
{
"name": "@snowplow/browser-plugin-optimizely",
"version": "1.0.0",
"description": "Automatically attaches Optimizely data as a context to events",
"license": "Apache-2.0",
"author": "Paul Boocock",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c --silent",
"dev": "rollup -c -w",
"test": ""
},
"dependencies": {
"@snowplow/browser-core": "workspace:*",
"@snowplow/tracker-core": "workspace:*",
"lodash": "^4.17.20",
"tslib": "^2.0.3"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"@wessberg/rollup-plugin-ts": "^1.3.8",
"eslint": "^7.7.0",
"jest": "^26.6.3",
"jest-standard-reporter": "^2.0.0",
"rollup": "^2.34.0",
"ts-jest": "^26.5.0",
"typescript": "^4.1.2"
}
}