-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 812 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 812 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
{
"name": "@dropbear-dev/web-experiments",
"version": "0.1.0",
"description": "Implement flexible client-side A/B experiments with weighted variants, persistence, and optional server-side control.",
"module": "./main.js",
"type": "module",
"scripts": {
"demo": "wds --port $PORT"
},
"exports": {
".": "./main.js"
},
"author": "Dropbear Software",
"license": "MIT",
"keywords": [
"web component",
"ab testing",
"experiments",
"google analytics",
"google tag manager",
"custom element"
],
"bugs": {
"url": "https://github.com/dropbear-software/web-experiments/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dropbear-software/web-experiments.git"
},
"devDependencies": {
"@web/dev-server": "^0.4.6"
}
}