make-mp-data 1.5.0 → 1.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,327 @@
1
+ /**
2
+ * This is the default configuration file for the data generator in COMPLEX mode
3
+ * notice how the config object is structured, and see it's type definition in ./types.d.ts
4
+ * feel free to modify this file to customize the data you generate
5
+ * see helper functions in utils.js for more ways to generate data
6
+ */
7
+
8
+
9
+ const Chance = require('chance');
10
+ const chance = new Chance();
11
+ const { weighNumRange, date, integer, pickAWinner, exhaust } = require('../components/utils.js');
12
+ const u = require('ak-tools');
13
+
14
+ const channel_ids = [...Array(1234).keys()].map(i => i + 1).map(n => `channel_id_${n}`);
15
+ const channel_names = chance.n(u.makeName, 1234);
16
+ const video_ids = [...Array(50000).keys()].map(i => i + 1).map(n => n.toString());
17
+ const video_names = chance.n(u.makeName, 50000);
18
+
19
+ const EVENTS = 50_000
20
+ const USERS = EVENTS / 100
21
+
22
+
23
+ /** @type {import('../types.js').Config} */
24
+ const config = {
25
+ token: "",
26
+ seed: "it's business time...",
27
+ numDays: 90, //how many days worth of data
28
+ numEvents: EVENTS, //how many events
29
+ numUsers: USERS, //how many users
30
+ format: 'json', //csv or json
31
+ region: "US",
32
+ hasAnonIds: false, //if true, anonymousIds are created for each user
33
+ hasSessionIds: false, //if true, hasSessionIds are created for each user
34
+ hasLocation: true,
35
+ hasAndroidDevices: true,
36
+ hasIOSDevices: true,
37
+ hasDesktopDevices: true,
38
+ hasBrowser: true,
39
+ hasCampaigns: true,
40
+ isAnonymous: false,
41
+ hasAdSpend: true,
42
+
43
+ hasAvatar: false,
44
+ makeChart: true,
45
+
46
+ batchSize: 500_000,
47
+ concurrency: 500,
48
+
49
+ funnels: [
50
+ {
51
+ sequence: ["watch video", "like video", "subscribe", "purchase video"],
52
+ conversionRate: 35,
53
+ props: {
54
+ channel_id: pickAWinner(channel_ids),
55
+ video_id: weighNumRange(1, 50000, 1.4),
56
+ category: pickAWinner(["funny", "educational", "music", "news", "sports", "cooking", "DIY", "travel", "gaming"]),
57
+ isFeatured: () => { chance.bool({ likelihood: 25 }); },
58
+ }
59
+ },
60
+ {
61
+ sequence: ["watch video", "dislike video"],
62
+ conversionRate: 10,
63
+ order: "sequential",
64
+ props: {
65
+ channel_id: pickAWinner(channel_ids),
66
+ video_id: weighNumRange(1, 50000, .67),
67
+ category: pickAWinner(["funny", "educational", "music", "news", "sports", "cooking", "DIY", "travel", "gaming"]),
68
+ isFeatured: () => { chance.bool({ likelihood: 25 }); },
69
+ }
70
+ },
71
+ ],
72
+ events: [
73
+ {
74
+ "event": "watch video",
75
+ "weight": 75,
76
+ "properties": {
77
+ "#hashtags": makeHashTags,
78
+ "watch time (sec)": weighNumRange(10, 600, .25),
79
+ "quality": pickAWinner(["2160p", "1440p", "1080p", "720p", "480p", "360p", "240p"], 1)
80
+ }
81
+ },
82
+ {
83
+ "event": "like video",
84
+ "weight": 30,
85
+ "properties": {
86
+
87
+ }
88
+ },
89
+ {
90
+ "event": "dislike video",
91
+ "weight": 15,
92
+ "properties": {
93
+
94
+ }
95
+ },
96
+ {
97
+ "event": "subscribe",
98
+ "weight": 10,
99
+ "properties": {
100
+ "UI": pickAWinner(["button", "link", "modal", "menu"]),
101
+ }
102
+ },
103
+ {
104
+ "event": "search",
105
+ "weight": 10,
106
+ "properties": {
107
+ term: () => { return chance.word(); },
108
+ "# results": weighNumRange(1, 100, .25),
109
+ "UI": pickAWinner(["button", "link", "modal", "menu"]),
110
+ }
111
+ },
112
+ {
113
+ "event": "comment",
114
+ "weight": 6,
115
+ "properties": {
116
+ length: weighNumRange(1, 500, .25),
117
+ video_id: weighNumRange(1, 50000, .72),
118
+ "has replies": [true, false, false, false, false],
119
+ "has photos": [true, false, false, false, false],
120
+
121
+ }
122
+ },
123
+ {
124
+ "event": "save video",
125
+ "weight": 17,
126
+ "properties": {
127
+ video_id: weighNumRange(1, 50000, 1.4),
128
+ UI: pickAWinner(["toolbar", "menu", "keyboard"])
129
+
130
+ }
131
+ },
132
+ {
133
+ "event": "create playlist",
134
+ "weight": 5,
135
+ "properties": {
136
+ "# of videos": weighNumRange(1, 100, .25),
137
+ "UI": pickAWinner(["toolbar", "menu", "keyboard"]),
138
+ "visibility": pickAWinner(["public", "private", "unlisted"]),
139
+ }
140
+ },
141
+ {
142
+ "event": "purchase video",
143
+ "weight": 12,
144
+ "properties": {
145
+ video_id: weighNumRange(1, 50000, 1.4),
146
+ basket: makeProducts(5),
147
+
148
+
149
+ }
150
+ },
151
+ {
152
+ "event": "support ticket",
153
+ "weight": 10,
154
+ "properties": {
155
+ description: chance.sentence.bind(chance),
156
+ severity: ["low", "medium", "high"],
157
+ ticket_id: chance.guid.bind(chance)
158
+ }
159
+ },
160
+ {
161
+ "event": "app error",
162
+ "weight": 15,
163
+ "properties": {
164
+ code: pickAWinner(["404", "500", "403", "401", "400", "503", "504", "429"]),
165
+ error: chance.sentence.bind(chance),
166
+ component: pickAWinner(["video player", "search", "comment", "profile", "settings", "billing", "support"]),
167
+ }
168
+ },
169
+ {
170
+ "event": "sign up",
171
+ "isFirstEvent": true,
172
+ "weight": 0,
173
+ "properties": {
174
+
175
+ }
176
+ }
177
+ ],
178
+ superProps: {
179
+
180
+
181
+ },
182
+ /*
183
+ user properties work the same as event properties
184
+ each key should be an array or function reference
185
+ */
186
+ userProps: {
187
+ title: chance.profession.bind(chance),
188
+ luckyNumber: weighNumRange(42, 420),
189
+ experiment: designExperiment(),
190
+ spiritAnimal: ["unicorn", "dragon", "phoenix", "sasquatch", "yeti", "kraken", "jackalope", "thunderbird", "mothman", "nessie", "chupacabra", "jersey devil", "bigfoot", "weindgo", "bunyip", "mokele-mbembe", "tatzelwurm", "megalodon"],
191
+
192
+ ip: chance.ip.bind(chance),
193
+
194
+ },
195
+
196
+ /** each generates it's own table */
197
+ scdProps: {
198
+ plan: ["free", "free", "free", "free", "basic", "basic", "basic", "premium", "premium", "enterprise"],
199
+ MRR: weighNumRange(0, 10000, .15),
200
+ NPS: weighNumRange(0, 10, 2, 150),
201
+ },
202
+
203
+ mirrorProps: {
204
+
205
+ },
206
+
207
+ /*
208
+ for group analytics keys, we need an array of arrays [[],[],[]]
209
+ each pair represents a group_key and the number of profiles for that key
210
+ */
211
+ groupKeys: [
212
+ ['channel_id', 1234, ["save video", "comment", "watch video", "purchase video", "like video", "dislike video", "subscribe"]],
213
+
214
+ ],
215
+ groupProps: {
216
+ channel_id: {
217
+ "name": exhaust(channel_names),
218
+ "viewers": weighNumRange(5, 500, .25),
219
+ "rating": weighNumRange(1, 5),
220
+ "reviews": weighNumRange(0, 35)
221
+ }
222
+
223
+ },
224
+
225
+ lookupTables: [
226
+ {
227
+ key: "video_id",
228
+ entries: 50000,
229
+ attributes: {
230
+ isFlagged: [true, false, false, false, false],
231
+ copyright: ["all rights reserved", "creative commons", "creative commons", "public domain", "fair use"],
232
+ uploader_id: chance.guid.bind(chance),
233
+ "uploader influence": ["low", "low", "low", "medium", "medium", "high"],
234
+ thumbs: weighNumRange(0, 4000, .25),
235
+ video_name: exhaust(video_names),
236
+ rating: ["G", "PG", "PG-13", "R", "NC-17", "PG-13", "R", "NC-17", "R", "PG", "PG"]
237
+ }
238
+
239
+ }
240
+ ],
241
+
242
+ hook: function (record, type, meta) {
243
+ return record;
244
+ }
245
+ };
246
+
247
+
248
+
249
+ function makeHashTags() {
250
+ const possibleHashtags = [];
251
+ for (let i = 0; i < 20; i++) {
252
+ possibleHashtags.push('#' + u.makeName(2, ''));
253
+ }
254
+
255
+ const numHashtags = integer(integer(1, 5), integer(5, 10));
256
+ const hashtags = [];
257
+ for (let i = 0; i < numHashtags; i++) {
258
+ hashtags.push(chance.pickone(possibleHashtags));
259
+ }
260
+ return [hashtags];
261
+ };
262
+
263
+ function makeProducts(maxItems = 10) {
264
+ return function () {
265
+ const categories = ["Device Accessories", "eBooks", "Automotive", "Baby Products", "Beauty", "Books", "Camera & Photo", "Cell Phones & Accessories", "Collectible Coins", "Consumer Electronics", "Entertainment Collectibles", "Fine Art", "Grocery & Gourmet Food", "Health & Personal Care", "Home & Garden", "Independent Design", "Industrial & Scientific", "Accessories", "Major Appliances", "Music", "Musical Instruments", "Office Products", "Outdoors", "Personal Computers", "Pet Supplies", "Software", "Sports", "Sports Collectibles", "Tools & Home Improvement", "Toys & Games", "Video, DVD & Blu-ray", "Video Games", "Watches"];
266
+ const slugs = ['/sale/', '/featured/', '/home/', '/search/', '/wishlist/', '/'];
267
+ const assetExtension = ['.png', '.jpg', '.jpeg', '.heic', '.mp4', '.mov', '.avi'];
268
+ const data = [];
269
+ const numOfItems = integer(1, 12);
270
+
271
+ for (var i = 0; i < numOfItems; i++) {
272
+ const category = chance.pickone(categories);
273
+ const slug = chance.pickone(slugs);
274
+ const asset = chance.pickone(assetExtension);
275
+ const product_id = chance.guid();
276
+ const price = integer(1, 300);
277
+ const quantity = integer(1, 5);
278
+
279
+ const item = {
280
+ product_id: product_id,
281
+ sku: integer(11111, 99999),
282
+ amount: price,
283
+ quantity: quantity,
284
+ value: price * quantity,
285
+ featured: chance.pickone([true, false]),
286
+ category: category,
287
+ urlSlug: slug + category,
288
+ asset: `${category}-${integer(1, 20)}${asset}`
289
+ };
290
+
291
+ data.push(item);
292
+ }
293
+
294
+ return [data];
295
+ };
296
+ };
297
+
298
+
299
+ function designExperiment() {
300
+ return function () {
301
+ const variants = ["A", "B", "C", "Control"];
302
+ const variant = chance.pickone(variants);
303
+ const experiments = ["no password", "social sign in", "new tutorial", "new search"];
304
+ const experiment = chance.pickone(experiments);
305
+ const multi_variates = ["A/B", "A/B/C", "A/B/C/D", "Control"];
306
+ const multi_variate = chance.pickone(multi_variates);
307
+ const impression_id = chance.guid();
308
+
309
+
310
+
311
+ const chosen = {
312
+ variant,
313
+ experiment,
314
+ multi_variate,
315
+ impression_id
316
+ };
317
+
318
+ return [chosen];
319
+ };
320
+ }
321
+
322
+
323
+
324
+
325
+
326
+
327
+ module.exports = config;
@@ -8,7 +8,7 @@
8
8
 
9
9
  const Chance = require('chance');
10
10
  const chance = new Chance();
11
- const { weighNumRange, date, integer } = require('../src/utils.js');
11
+ const { weighNumRange, date, integer } = require('../components/utils.js');
12
12
  const u = require('ak-tools');
13
13
 
14
14
  /** @type {import('../types.js').Config} */
package/schemas/foobar.js CHANGED
@@ -14,7 +14,7 @@ const dayjs = require("dayjs");
14
14
  const utc = require("dayjs/plugin/utc");
15
15
  dayjs.extend(utc);
16
16
  const { uid, comma } = require('ak-tools');
17
- const { pickAWinner, weighNumRange, date, integer } = require('../src/utils');
17
+ const { pickAWinner, weighNumRange, date, integer } = require('../components/utils');
18
18
 
19
19
  const itemCategories = ["Books", "Movies", "Music", "Games", "Electronics", "Computers", "Smart Home", "Home", "Garden", "Pet", "Beauty", "Health", "Toys", "Kids", "Baby", "Handmade", "Sports", "Outdoors", "Automotive", "Industrial", "Entertainment", "Art", "Food", "Appliances", "Office", "Wedding", "Software"];
20
20
 
@@ -14,7 +14,7 @@ const dayjs = require("dayjs");
14
14
  const utc = require("dayjs/plugin/utc");
15
15
  dayjs.extend(utc);
16
16
  const { uid, comma } = require('ak-tools');
17
- const { pickAWinner, weighNumRange, date, integer } = require('../src/utils');
17
+ const { pickAWinner, weighNumRange, date, integer } = require('../components/utils');
18
18
 
19
19
  const itemCategories = ["Books", "Movies", "Music", "Games", "Electronics", "Computers", "Smart Home", "Home", "Garden", "Pet", "Beauty", "Health", "Toys", "Kids", "Baby", "Handmade", "Sports", "Outdoors", "Automotive", "Industrial", "Entertainment", "Art", "Food", "Appliances", "Office", "Wedding", "Software"];
20
20
 
package/schemas/mirror.js CHANGED
@@ -14,7 +14,7 @@ const dayjs = require("dayjs");
14
14
  const utc = require("dayjs/plugin/utc");
15
15
  dayjs.extend(utc);
16
16
  const { uid, comma } = require('ak-tools');
17
- const { pickAWinner, weighNumRange, date, integer } = require('../src/utils');
17
+ const { pickAWinner, weighNumRange, date, integer } = require('../components/utils');
18
18
 
19
19
 
20
20
  /** @type {import('../types').Config} */
@@ -0,0 +1,118 @@
1
+ /**
2
+ * This is the default configuration file for the data generator in SIMPLE mode
3
+ * notice how the config object is structured, and see it's type definition in ./types.d.ts
4
+ * feel free to modify this file to customize the data you generate
5
+ * see helper functions in utils.js for more ways to generate data
6
+ */
7
+
8
+
9
+
10
+
11
+ const Chance = require('chance');
12
+ const chance = new Chance();
13
+ const dayjs = require("dayjs");
14
+ const utc = require("dayjs/plugin/utc");
15
+ dayjs.extend(utc);
16
+ const { weighNumRange, integer } = require('../components/utils');
17
+
18
+
19
+ /** @type {import('../types').Config} */
20
+ const config = {
21
+ token: "",
22
+ seed: "foo bar",
23
+ numDays: 90, //how many days worth of data
24
+ numEvents: 50_000, //how many events
25
+ numUsers: 500, //how many users
26
+ format: 'json', //csv or json
27
+ region: "US",
28
+ hasAnonIds: false, //if true, anonymousIds are created for each user
29
+ hasSessionIds: false, //if true, hasSessionIds are created for each user
30
+ alsoInferFunnels: true, //if true, infer funnels from events
31
+ makeChart: true,
32
+ funnels: [
33
+ {
34
+ sequence: ["qux", "garply", "durtle", "linny", "fonk", "crumn", "yak"],
35
+ },
36
+ {
37
+ sequence: ["foo", "bar", "baz"],
38
+ isFirstFunnel: true,
39
+ }
40
+ ],
41
+ events: [
42
+ {
43
+ event: "foo",
44
+ weight: 10,
45
+ properties: {}
46
+ },
47
+ {
48
+ event: "bar",
49
+ weight: 9,
50
+ isFirstEvent: true,
51
+ properties: {}
52
+ },
53
+ {
54
+ event: "baz",
55
+ weight: 8,
56
+ properties: {}
57
+ },
58
+ {
59
+ event: "qux",
60
+ weight: 7,
61
+ properties: {}
62
+ },
63
+ {
64
+ event: "garply",
65
+ weight: 6,
66
+ properties: {}
67
+ },
68
+ {
69
+ event: "durtle",
70
+ weight: 5,
71
+ properties: {}
72
+ },
73
+ {
74
+ event: "linny",
75
+ weight: 4,
76
+ properties: {}
77
+ },
78
+ {
79
+ event: "fonk",
80
+ weight: 3,
81
+ properties: {}
82
+ },
83
+ {
84
+ event: "crumn",
85
+ weight: 2,
86
+ properties: {}
87
+ },
88
+ {
89
+ event: "yak",
90
+ weight: 1,
91
+ properties: {}
92
+ }
93
+ ],
94
+ superProps: {
95
+ color: ["red", "orange", "yellow", "green", "blue", "indigo", "violet"],
96
+ number: integer,
97
+
98
+ },
99
+ userProps: {
100
+ title: chance.profession.bind(chance),
101
+ luckyNumber: weighNumRange(42, 420),
102
+ spiritAnimal: ["duck", "dog", "otter", "penguin", "cat", "elephant", "lion", "cheetah", "giraffe", "zebra", "rhino", "hippo", "whale", "dolphin", "shark", "octopus", "squid", "jellyfish", "starfish", "seahorse", "crab", "lobster", "shrimp", "clam", "snail", "slug", "butterfly", "moth", "bee", "wasp", "ant", "beetle", "ladybug", "caterpillar", "centipede", "millipede", "scorpion", "spider", "tarantula", "tick", "mite", "mosquito", "fly", "dragonfly", "damselfly", "grasshopper", "cricket", "locust", "mantis", "cockroach", "termite", "praying mantis", "walking stick", "stick bug", "leaf insect", "lacewing", "aphid", "cicada", "thrips", "psyllid", "scale insect", "whitefly", "mealybug", "planthopper", "leafhopper", "treehopper", "flea", "louse", "bedbug", "flea beetle", "weevil", "longhorn beetle", "leaf beetle", "tiger beetle", "ground beetle", "lady beetle", "firefly", "click beetle", "rove beetle", "scarab beetle", "dung beetle", "stag beetle", "rhinoceros beetle", "hercules beetle", "goliath beetle", "jewel beetle", "tortoise beetle"]
103
+ },
104
+
105
+ scdProps: {},
106
+ mirrorProps: {},
107
+ lookupTables: [],
108
+ groupKeys: [],
109
+ groupProps: {},
110
+
111
+ hook: function (record, type, meta) {
112
+ return record;
113
+ }
114
+ };
115
+
116
+
117
+
118
+ module.exports = config;
@@ -0,0 +1,136 @@
1
+
2
+ const SEED = "my-seed";
3
+ const dayjs = require("dayjs");
4
+ const utc = require("dayjs/plugin/utc");
5
+ dayjs.extend(utc);
6
+ require("dotenv").config();
7
+ const u = require("../components/utils");
8
+ const v = require("ak-tools");
9
+ const chance = u.initChance(SEED);
10
+ const num_users = 1000;
11
+ const days = 90;
12
+
13
+ /** @type {import("../types").Config} */
14
+ const config = {
15
+ token: "0135b13525b21294e9e599a483eb35b2",
16
+ seed: SEED,
17
+ numDays: days,
18
+ numEvents: num_users * 100,
19
+ numUsers: num_users,
20
+ hasAnonIds: false,
21
+ hasSessionIds: false,
22
+ format: "json",
23
+ alsoInferFunnels: false,
24
+ hasLocation: true,
25
+ hasAndroidDevices: false,
26
+ hasIOSDevices: false,
27
+ hasDesktopDevices: true,
28
+ hasBrowser: true,
29
+ hasCampaigns: true,
30
+ isAnonymous: false,
31
+ hasAdSpend: true,
32
+
33
+ hasAvatar: true,
34
+ makeChart: true,
35
+
36
+ batchSize: 500_000,
37
+ concurrency: 500,
38
+ writeToDisk: false,
39
+
40
+ funnels: [
41
+ {
42
+ sequence: ["view page", "watch video", "like video"],
43
+ conversionRate: 25,
44
+ timeToConvert: 1
45
+ },
46
+ {
47
+ sequence: ["view page", "watch video", "dislike video"],
48
+ conversionRate: 20,
49
+ timeToConvert: 1
50
+ },
51
+ {
52
+ sequence: ["view page", "watch video", "comment on video"],
53
+ conversionRate: 15,
54
+ timeToConvert: 1
55
+ },
56
+ {
57
+ sequence: ["view page", "sign up"],
58
+ conversionRate: 70,
59
+ isFirstFunnel: true,
60
+
61
+ }
62
+ ],
63
+ events: [
64
+ {
65
+ "event": "view page",
66
+ weight: 100,
67
+
68
+ },
69
+ {
70
+ "event": "watch video",
71
+ weight: 150,
72
+ "properties": {
73
+ "watch time (mins)": u.weighNumRange(1, 60, .34)
74
+ }
75
+ },
76
+ {
77
+ "event": "like video",
78
+ weight: 50
79
+ },
80
+ {
81
+ "event": "dislike video",
82
+ weight: 40
83
+ },
84
+ {
85
+ "event": "comment on video",
86
+ weight: 30
87
+ },
88
+ {
89
+ "event": "new feature: AI Filters",
90
+ weight: 10
91
+ },
92
+ {
93
+ "event": "sign up",
94
+ weight: 10,
95
+ "isFirstEvent": true,
96
+ }
97
+ ],
98
+ superProps: {},
99
+ userProps: {},
100
+ scdProps: {},
101
+ mirrorProps: {},
102
+ groupKeys: [],
103
+ groupProps: {},
104
+ lookupTables: [],
105
+ hook: function (record, type, meta) {
106
+ const NOW = dayjs();
107
+ const bugStartDate = NOW.subtract(14, 'days');
108
+ const bugFixedDate = NOW.subtract(3, 'days');
109
+ const featureReleaseData = NOW.subtract(7, 'days');
110
+
111
+ if (type === "event") {
112
+ const EVENT_TIME = dayjs(record.time);
113
+ if (record.event === "new feature: AI Filters" && EVENT_TIME.isBefore(featureReleaseData)) {
114
+ return null;
115
+ }
116
+ }
117
+
118
+ if (type === "funnel-post") {
119
+ // there's a bug in Chrome where users can't complete the funnel
120
+ if (dayjs(record[0].time).isAfter(bugStartDate) && dayjs(record[0].time).isBefore(bugFixedDate)) {
121
+ if (record[0].browser === "Chrome") {
122
+ if (record.length > 2) {
123
+ record.pop(); // remove the last event
124
+ }
125
+ }
126
+ }
127
+
128
+ }
129
+
130
+ return record;
131
+ }
132
+
133
+
134
+ };
135
+
136
+ module.exports = config;
package/schemas/simple.js CHANGED
@@ -14,7 +14,7 @@ const dayjs = require("dayjs");
14
14
  const utc = require("dayjs/plugin/utc");
15
15
  dayjs.extend(utc);
16
16
  const { uid, comma } = require('ak-tools');
17
- const { pickAWinner, weighNumRange, date, integer, weighChoices } = require('../src/utils');
17
+ const { pickAWinner, weighNumRange, date, integer, weighChoices } = require('../components/utils');
18
18
 
19
19
  const itemCategories = ["Books", "Movies", "Music", "Games", "Electronics", "Computers", "Smart Home", "Home", "Garden", "Pet", "Beauty", "Health", "Toys", "Kids", "Baby", "Handmade", "Sports", "Outdoors", "Automotive", "Industrial", "Entertainment", "Art", "Food", "Appliances", "Office", "Wedding", "Software"];
20
20
 
@@ -32,7 +32,7 @@ const config = {
32
32
  hasAnonIds: false, //if true, anonymousIds are created for each user
33
33
  hasSessionIds: false, //if true, hasSessionIds are created for each user
34
34
  hasAdSpend: false,
35
-
35
+ makeChart: true,
36
36
  hasLocation: true,
37
37
  hasAndroidDevices: true,
38
38
  hasIOSDevices: true,
@@ -1,5 +1,5 @@
1
1
  /* eslint-disable no-unused-vars */
2
2
  // @ts-check
3
- const module = require('../index.js/index.js');
3
+ const module = require('../index.js');
4
4
 
5
5
  module({})