@saasquatch/squatch-js 2.6.0 → 2.6.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.
package/jest.config.ts CHANGED
@@ -1,200 +1,200 @@
1
- /*
2
- * For a detailed explanation regarding each configuration property and type check, visit:
3
- * https://jestjs.io/docs/configuration
4
- */
5
-
6
- export default {
7
- // All imported modules in your tests should be mocked automatically
8
- // automock: false,
9
-
10
- // Stop running tests after `n` failures
11
- // bail: 0,
12
-
13
- // The directory where Jest should store its cached dependency information
14
- // cacheDirectory: "/private/var/folders/zv/t83jrkg12jx3bqgq3vx_v29h0000gp/T/jest_dy",
15
-
16
- // Automatically clear mock calls, instances, contexts and results before every test
17
- // clearMocks: false,
18
-
19
- // Indicates whether the coverage information should be collected while executing the test
20
- // collectCoverage: false,
21
-
22
- // An array of glob patterns indicating a set of files for which coverage information should be collected
23
- // collectCoverageFrom: undefined,
24
-
25
- // The directory where Jest should output its coverage files
26
- // coverageDirectory: "coverage",
27
-
28
- // An array of regexp pattern strings used to skip coverage collection
29
- coveragePathIgnorePatterns: ["/node_modules/", "/test/"],
30
-
31
- // Indicates which provider should be used to instrument code for coverage
32
- // coverageProvider: "babel",
33
-
34
- // A list of reporter names that Jest uses when writing coverage reports
35
- // coverageReporters: [
36
- // "json",
37
- // "text",
38
- // "lcov",
39
- // "clover"
40
- // ],
41
-
42
- // An object that configures minimum threshold enforcement for coverage results
43
- // coverageThreshold: undefined,
44
-
45
- // A path to a custom dependency extractor
46
- // dependencyExtractor: undefined,
47
-
48
- // Make calling deprecated APIs throw helpful error messages
49
- // errorOnDeprecated: false,
50
-
51
- // The default configuration for fake timers
52
- // fakeTimers: {
53
- // "enableGlobally": false
54
- // },
55
-
56
- // Force coverage collection from ignored files using an array of glob patterns
57
- // forceCoverageMatch: [],
58
-
59
- // A path to a module which exports an async function that is triggered once before all test suites
60
- // globalSetup: undefined,
61
-
62
- // A path to a module which exports an async function that is triggered once after all test suites
63
- // globalTeardown: undefined,
64
-
65
- // A set of global variables that need to be available in all test environments
66
- // globals: {},
67
-
68
- // The maximum amount of workers used to run your tests. Can be specified as % or a number. E.g. maxWorkers: 10% will use 10% of your CPU amount + 1 as the maximum worker number. maxWorkers: 2 will use a maximum of 2 workers.
69
- // maxWorkers: "50%",
70
-
71
- // An array of directory names to be searched recursively up from the requiring module's location
72
- moduleDirectories: ["node_modules"],
73
-
74
- // An array of file extensions your modules use
75
- // moduleFileExtensions: [
76
- // "js",
77
- // "mjs",
78
- // "cjs",
79
- // "jsx",
80
- // "ts",
81
- // "tsx",
82
- // "json",
83
- // "node"
84
- // ],
85
-
86
- // A map from regular expressions to module names or to arrays of module names that allow to stub out resources with a single module
87
- moduleNameMapper: {
88
- "source-map-support/register": "identity-obj-proxy",
89
- "^uuid$": "uuid",
90
- },
91
-
92
- // An array of regexp pattern strings, matched against all module paths before considered 'visible' to the module loader
93
- // modulePathIgnorePatterns: [],
94
-
95
- // Activates notifications for test results
96
- // notify: false,
97
-
98
- // An enum that specifies notification mode. Requires { notify: true }
99
- // notifyMode: "failure-change",
100
-
101
- // A preset that is used as a base for Jest's configuration
102
- preset: "ts-jest",
103
-
104
- // Run tests from one or more projects
105
- // projects: undefined,
106
-
107
- // Use this configuration option to add custom reporters to Jest
108
- // reporters: undefined,
109
-
110
- // Automatically reset mock state before every test
111
- resetMocks: true,
112
-
113
- // Reset the module registry before running each individual test
114
- resetModules: true,
115
-
116
- // A path to a custom resolver
117
- // resolver: undefined,
118
-
119
- // Automatically restore mock state and implementation before every test
120
- // restoreMocks: false,
121
-
122
- // The root directory that Jest should scan for tests and modules within
123
- // rootDir: undefined,
124
-
125
- // A list of paths to directories that Jest should use to search for files in
126
- // roots: [
127
- // "<rootDir>"
128
- // ],
129
-
130
- // Allows you to use a custom runner instead of Jest's default test runner
131
- // runner: "jest-runner",
132
-
133
- // The paths to modules that run some code to configure or set up the testing environment before each test
134
- // setupFiles: [],
135
-
136
- // A list of paths to modules that run some code to configure or set up the testing framework before each test
137
- // setupFilesAfterEnv: [],
138
-
139
- // The number of seconds after which a test is considered as slow and reported as such in the results.
140
- // slowTestThreshold: 5,
141
-
142
- // A list of paths to snapshot serializer modules Jest should use for snapshot testing
143
- // snapshotSerializers: [],
144
-
145
- // The test environment that will be used for testing
146
- testEnvironment: "@happy-dom/jest-environment",
147
-
148
- // Options that will be passed to the testEnvironment
149
- testEnvironmentOptions: {
150
- resources: "usable",
151
- },
152
-
153
- // Adds a location field to test results
154
- // testLocationInResults: false,
155
-
156
- // The glob patterns Jest uses to detect test files
157
- testMatch: [
158
- "**/*.steps.[tj]s",
159
- "**/__tests__/**/*.[jt]s?(x)",
160
- "**/?(*.)+(spec|test).[tj]s?(x)",
161
- ],
162
-
163
- // An array of regexp pattern strings that are matched against all test paths, matched tests are skipped
164
- // testPathIgnorePatterns: [
165
- // "/node_modules/"
166
- // ],
167
-
168
- // The regexp pattern or array of patterns that Jest uses to detect test files
169
- // testRegex: [],
170
-
171
- // This option allows the use of a custom results processor
172
- // testResultsProcessor: undefined,
173
-
174
- // This option allows use of a custom test runner
175
- // testRunner: "jest-circus/runner",
176
-
177
- // A map from regular expressions to paths to transformers
178
- transform: {
179
- "^.+\\.(ts|tsx)?$": "ts-jest",
180
- "^.+\\.(js|jsx)$": "babel-jest",
181
- },
182
-
183
- // An array of regexp pattern strings that are matched against all source file paths, matched files will skip transformation
184
- transformIgnorePatterns: [
185
- "node_modules/(?!(@open-wc|lit|jest-cucumber|lit-html|@lit|lit-element)/)",
186
- "\\.pnp\\.[^\\/]+$",
187
- ],
188
-
189
- // An array of regexp pattern strings that are matched against all modules before the module loader will automatically return a mock for them
190
- // unmockedModulePathPatterns: undefined,
191
-
192
- // Indicates whether each individual test should be reported during the run
193
- // verbose: undefined,
194
-
195
- // An array of regexp patterns that are matched against all source file paths before re-running tests in watch mode
196
- // watchPathIgnorePatterns: [],
197
-
198
- // Whether to use watchman for file crawling
199
- // watchman: true,
200
- };
1
+ /*
2
+ * For a detailed explanation regarding each configuration property and type check, visit:
3
+ * https://jestjs.io/docs/configuration
4
+ */
5
+
6
+ export default {
7
+ // All imported modules in your tests should be mocked automatically
8
+ // automock: false,
9
+
10
+ // Stop running tests after `n` failures
11
+ // bail: 0,
12
+
13
+ // The directory where Jest should store its cached dependency information
14
+ // cacheDirectory: "/private/var/folders/zv/t83jrkg12jx3bqgq3vx_v29h0000gp/T/jest_dy",
15
+
16
+ // Automatically clear mock calls, instances, contexts and results before every test
17
+ // clearMocks: false,
18
+
19
+ // Indicates whether the coverage information should be collected while executing the test
20
+ // collectCoverage: false,
21
+
22
+ // An array of glob patterns indicating a set of files for which coverage information should be collected
23
+ // collectCoverageFrom: undefined,
24
+
25
+ // The directory where Jest should output its coverage files
26
+ // coverageDirectory: "coverage",
27
+
28
+ // An array of regexp pattern strings used to skip coverage collection
29
+ coveragePathIgnorePatterns: ["/node_modules/", "/test/"],
30
+
31
+ // Indicates which provider should be used to instrument code for coverage
32
+ // coverageProvider: "babel",
33
+
34
+ // A list of reporter names that Jest uses when writing coverage reports
35
+ // coverageReporters: [
36
+ // "json",
37
+ // "text",
38
+ // "lcov",
39
+ // "clover"
40
+ // ],
41
+
42
+ // An object that configures minimum threshold enforcement for coverage results
43
+ // coverageThreshold: undefined,
44
+
45
+ // A path to a custom dependency extractor
46
+ // dependencyExtractor: undefined,
47
+
48
+ // Make calling deprecated APIs throw helpful error messages
49
+ // errorOnDeprecated: false,
50
+
51
+ // The default configuration for fake timers
52
+ // fakeTimers: {
53
+ // "enableGlobally": false
54
+ // },
55
+
56
+ // Force coverage collection from ignored files using an array of glob patterns
57
+ // forceCoverageMatch: [],
58
+
59
+ // A path to a module which exports an async function that is triggered once before all test suites
60
+ // globalSetup: undefined,
61
+
62
+ // A path to a module which exports an async function that is triggered once after all test suites
63
+ // globalTeardown: undefined,
64
+
65
+ // A set of global variables that need to be available in all test environments
66
+ // globals: {},
67
+
68
+ // The maximum amount of workers used to run your tests. Can be specified as % or a number. E.g. maxWorkers: 10% will use 10% of your CPU amount + 1 as the maximum worker number. maxWorkers: 2 will use a maximum of 2 workers.
69
+ // maxWorkers: "50%",
70
+
71
+ // An array of directory names to be searched recursively up from the requiring module's location
72
+ moduleDirectories: ["node_modules"],
73
+
74
+ // An array of file extensions your modules use
75
+ // moduleFileExtensions: [
76
+ // "js",
77
+ // "mjs",
78
+ // "cjs",
79
+ // "jsx",
80
+ // "ts",
81
+ // "tsx",
82
+ // "json",
83
+ // "node"
84
+ // ],
85
+
86
+ // A map from regular expressions to module names or to arrays of module names that allow to stub out resources with a single module
87
+ moduleNameMapper: {
88
+ "source-map-support/register": "identity-obj-proxy",
89
+ "^uuid$": "uuid",
90
+ },
91
+
92
+ // An array of regexp pattern strings, matched against all module paths before considered 'visible' to the module loader
93
+ // modulePathIgnorePatterns: [],
94
+
95
+ // Activates notifications for test results
96
+ // notify: false,
97
+
98
+ // An enum that specifies notification mode. Requires { notify: true }
99
+ // notifyMode: "failure-change",
100
+
101
+ // A preset that is used as a base for Jest's configuration
102
+ preset: "ts-jest",
103
+
104
+ // Run tests from one or more projects
105
+ // projects: undefined,
106
+
107
+ // Use this configuration option to add custom reporters to Jest
108
+ // reporters: undefined,
109
+
110
+ // Automatically reset mock state before every test
111
+ resetMocks: true,
112
+
113
+ // Reset the module registry before running each individual test
114
+ resetModules: true,
115
+
116
+ // A path to a custom resolver
117
+ // resolver: undefined,
118
+
119
+ // Automatically restore mock state and implementation before every test
120
+ // restoreMocks: false,
121
+
122
+ // The root directory that Jest should scan for tests and modules within
123
+ // rootDir: undefined,
124
+
125
+ // A list of paths to directories that Jest should use to search for files in
126
+ // roots: [
127
+ // "<rootDir>"
128
+ // ],
129
+
130
+ // Allows you to use a custom runner instead of Jest's default test runner
131
+ // runner: "jest-runner",
132
+
133
+ // The paths to modules that run some code to configure or set up the testing environment before each test
134
+ // setupFiles: [],
135
+
136
+ // A list of paths to modules that run some code to configure or set up the testing framework before each test
137
+ // setupFilesAfterEnv: [],
138
+
139
+ // The number of seconds after which a test is considered as slow and reported as such in the results.
140
+ // slowTestThreshold: 5,
141
+
142
+ // A list of paths to snapshot serializer modules Jest should use for snapshot testing
143
+ // snapshotSerializers: [],
144
+
145
+ // The test environment that will be used for testing
146
+ testEnvironment: "@happy-dom/jest-environment",
147
+
148
+ // Options that will be passed to the testEnvironment
149
+ testEnvironmentOptions: {
150
+ resources: "usable",
151
+ },
152
+
153
+ // Adds a location field to test results
154
+ // testLocationInResults: false,
155
+
156
+ // The glob patterns Jest uses to detect test files
157
+ testMatch: [
158
+ "**/*.steps.[tj]s",
159
+ "**/__tests__/**/*.[jt]s?(x)",
160
+ "**/?(*.)+(spec|test).[tj]s?(x)",
161
+ ],
162
+
163
+ // An array of regexp pattern strings that are matched against all test paths, matched tests are skipped
164
+ // testPathIgnorePatterns: [
165
+ // "/node_modules/"
166
+ // ],
167
+
168
+ // The regexp pattern or array of patterns that Jest uses to detect test files
169
+ // testRegex: [],
170
+
171
+ // This option allows the use of a custom results processor
172
+ // testResultsProcessor: undefined,
173
+
174
+ // This option allows use of a custom test runner
175
+ // testRunner: "jest-circus/runner",
176
+
177
+ // A map from regular expressions to paths to transformers
178
+ transform: {
179
+ "^.+\\.(ts|tsx)?$": "ts-jest",
180
+ "^.+\\.(js|jsx)$": "babel-jest",
181
+ },
182
+
183
+ // An array of regexp pattern strings that are matched against all source file paths, matched files will skip transformation
184
+ transformIgnorePatterns: [
185
+ "node_modules/(?!(@open-wc|lit|jest-cucumber|lit-html|@lit|lit-element)/)",
186
+ "\\.pnp\\.[^\\/]+$",
187
+ ],
188
+
189
+ // An array of regexp pattern strings that are matched against all modules before the module loader will automatically return a mock for them
190
+ // unmockedModulePathPatterns: undefined,
191
+
192
+ // Indicates whether each individual test should be reported during the run
193
+ // verbose: undefined,
194
+
195
+ // An array of regexp patterns that are matched against all source file paths before re-running tests in watch mode
196
+ // watchPathIgnorePatterns: [],
197
+
198
+ // Whether to use watchman for file crawling
199
+ // watchman: true,
200
+ };
package/package.json CHANGED
@@ -1,123 +1,123 @@
1
- {
2
- "name": "@saasquatch/squatch-js",
3
- "version": "2.6.0",
4
- "description": "The official Referral SaaSquatch Javascript Web/Browser SDK https://docs.referralsaasquatch.com/developer/squatchjs/",
5
- "license": "MIT",
6
- "author": "ReferralSaaSquatch.com, Inc.",
7
- "types": "dist/squatch.d.ts",
8
- "source": "src/squatch.ts",
9
- "main": "dist/squatch.js",
10
- "module": "dist/squatch.esm.js",
11
- "umd:main": "dist/squatch.min.js",
12
- "browser": "dist/squatch.min.js",
13
- "bugs": {
14
- "url": "https://github.com/saasquatch/squatch-js/issues",
15
- "email": "support@referralsaasquatch.com"
16
- },
17
- "engines": {
18
- "node": ">=12.16.0"
19
- },
20
- "repository": {
21
- "type": "git",
22
- "url": "https://github.com/saasquatch/squatch-js.git"
23
- },
24
- "tsd": {
25
- "directory": "test/tsd"
26
- },
27
- "sideEffects": false,
28
- "scripts": {
29
- "build:es": "microbundle --target node --format cjs,es",
30
- "build:umd": "webpack",
31
- "build": "run-s build:es build:umd build:docs",
32
- "watch": "webpack --watch",
33
- "declaration": "tsc --emitDeclarationOnly",
34
- "test:browser": "cucumber-js",
35
- "test:webkit": "cross-env BROWSER=webkit cucumber-js",
36
- "test:firefox": "cross-env BROWSER=firefox cucumber-js",
37
- "test:types": "tsd",
38
- "test:features": "jest --verbose --coverage",
39
- "test": "run-s test:features test:browser test:webkit test:firefox",
40
- "build:docs": "typedoc",
41
- "deploy": "np --no-cleanup",
42
- "deploy:docs": "surge ./ -d squathjsv2.surge.sh",
43
- "preversion": "run-s build",
44
- "demo": "msw init demo/dist/ --save && run-p static parcel",
45
- "demo:deploy": "run-s parcel:build parcel:deploy",
46
- "static": "serve -l 3333 -s dist",
47
- "parcel": "cd demo && parcel index.html",
48
- "parcel:build": "cd demo && parcel build index.html",
49
- "parcel:deploy": "surge demo/dist -d squathjs-demo.surge.sh"
50
- },
51
- "devDependencies": {
52
- "@babel/core": "^7.14.3",
53
- "@babel/plugin-proposal-class-properties": "^7.13.0",
54
- "@babel/plugin-transform-runtime": "^7.14.3",
55
- "@babel/preset-env": "^7.14.2",
56
- "@babel/preset-typescript": "^7.13.0",
57
- "@babel/register": "^7.13.16",
58
- "@babel/runtime-corejs2": "^7.14.0",
59
- "@happy-dom/jest-environment": "^9.20.3",
60
- "@open-wc/testing-helpers": "^2.3.0",
61
- "@size-limit/preset-small-lib": "^8.2.4",
62
- "@testing-library/dom": "^9.3.1",
63
- "@types/chai": "^4.3.5",
64
- "@types/cucumber": "^6.0.1",
65
- "@types/debug": "4.1.5",
66
- "@types/estree": "^1.0.1",
67
- "@types/express": "^4.17.6",
68
- "@types/inquirer": "^9.0.3",
69
- "@types/jest": "^29.5.2",
70
- "@types/js-cookie": "^2.2.6",
71
- "@types/jsdom-global": "^3.0.2",
72
- "@types/react": "^16.9.35",
73
- "@ungap/url-search-params": "^0.2.0",
74
- "babel-jest": "^29.5.0",
75
- "babel-loader": "^8.2.2",
76
- "base64-url": "^2.3.3",
77
- "chai": "^4.3.7",
78
- "cross-env": "^7.0.2",
79
- "cucumber": "^6.0.5",
80
- "express": "^4.17.1",
81
- "jest": "^29.5.0",
82
- "jest-cucumber": "^3.0.1",
83
- "jest-environment-jsdom": "^29.5.0",
84
- "microbundle": "^0.13.0",
85
- "msw": "^0.36.8",
86
- "np": "^6.2.3",
87
- "npm-run-all": "^4.1.5",
88
- "parcel": "^1.12.3",
89
- "parcel-bundler": "^1.12.4",
90
- "playwright": "^1.33.0-alpha-mar-29-2023",
91
- "react": "^16.13.1",
92
- "react-bootstrap": "^1.0.1",
93
- "react-dom": "^16.13.1",
94
- "react-url-query": "^1.5.0",
95
- "serve": "^11.3.0",
96
- "size-limit": "^8.2.4",
97
- "ts-jest": "^29.1.1",
98
- "ts-loader": "^7.0.4",
99
- "ts-node": "^8.10.2",
100
- "tsd": "^0.13.1",
101
- "typedoc": "^0.24.8",
102
- "typescript": "^5.1.6",
103
- "webpack": "^5.88.0",
104
- "webpack-bundle-analyzer": "^4.9.0",
105
- "webpack-cli": "^5.1.4",
106
- "webpack-visualizer-plugin": "^0.1.11"
107
- },
108
- "prettier": {},
109
- "dependencies": {
110
- "debug": "^3.2.6",
111
- "js-cookie": "^3.0.5"
112
- },
113
- "browserslist": "> 0.25%, not dead",
114
- "msw": {
115
- "workerDirectory": "demo/dist"
116
- },
117
- "size-limit": [
118
- {
119
- "path": "dist/squatch.js",
120
- "limit": "12.5 kB"
121
- }
122
- ]
123
- }
1
+ {
2
+ "name": "@saasquatch/squatch-js",
3
+ "version": "2.6.1",
4
+ "description": "The official Referral SaaSquatch Javascript Web/Browser SDK https://docs.referralsaasquatch.com/developer/squatchjs/",
5
+ "license": "MIT",
6
+ "author": "ReferralSaaSquatch.com, Inc.",
7
+ "types": "dist/squatch.d.ts",
8
+ "source": "src/squatch.ts",
9
+ "main": "dist/squatch.js",
10
+ "module": "dist/squatch.esm.js",
11
+ "umd:main": "dist/squatch.min.js",
12
+ "browser": "dist/squatch.min.js",
13
+ "bugs": {
14
+ "url": "https://github.com/saasquatch/squatch-js/issues",
15
+ "email": "support@referralsaasquatch.com"
16
+ },
17
+ "engines": {
18
+ "node": ">=12.16.0"
19
+ },
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "https://github.com/saasquatch/squatch-js.git"
23
+ },
24
+ "tsd": {
25
+ "directory": "test/tsd"
26
+ },
27
+ "sideEffects": false,
28
+ "scripts": {
29
+ "build:es": "microbundle --target node --format cjs,es",
30
+ "build:umd": "webpack",
31
+ "build": "run-s build:es build:umd build:docs",
32
+ "watch": "webpack --watch",
33
+ "declaration": "tsc --emitDeclarationOnly",
34
+ "test:browser": "cucumber-js",
35
+ "test:webkit": "cross-env BROWSER=webkit cucumber-js",
36
+ "test:firefox": "cross-env BROWSER=firefox cucumber-js",
37
+ "test:types": "tsd",
38
+ "test:features": "jest --verbose --coverage",
39
+ "test": "run-s test:features test:browser test:webkit test:firefox",
40
+ "build:docs": "typedoc",
41
+ "deploy": "np --no-cleanup",
42
+ "deploy:docs": "surge ./ -d squathjsv2.surge.sh",
43
+ "preversion": "run-s build",
44
+ "demo": "msw init demo/dist/ --save && run-p static parcel",
45
+ "demo:deploy": "run-s parcel:build parcel:deploy",
46
+ "static": "serve -l 3333 -s dist",
47
+ "parcel": "cd demo && parcel index.html",
48
+ "parcel:build": "cd demo && parcel build index.html",
49
+ "parcel:deploy": "surge demo/dist -d squathjs-demo.surge.sh"
50
+ },
51
+ "devDependencies": {
52
+ "@babel/core": "^7.14.3",
53
+ "@babel/plugin-proposal-class-properties": "^7.13.0",
54
+ "@babel/plugin-transform-runtime": "^7.14.3",
55
+ "@babel/preset-env": "^7.14.2",
56
+ "@babel/preset-typescript": "^7.13.0",
57
+ "@babel/register": "^7.13.16",
58
+ "@babel/runtime-corejs2": "^7.14.0",
59
+ "@happy-dom/jest-environment": "^9.20.3",
60
+ "@open-wc/testing-helpers": "^2.3.0",
61
+ "@size-limit/preset-small-lib": "^8.2.4",
62
+ "@testing-library/dom": "^9.3.1",
63
+ "@types/chai": "^4.3.5",
64
+ "@types/cucumber": "^6.0.1",
65
+ "@types/debug": "4.1.5",
66
+ "@types/estree": "^1.0.1",
67
+ "@types/express": "^4.17.6",
68
+ "@types/inquirer": "^9.0.3",
69
+ "@types/jest": "^29.5.2",
70
+ "@types/js-cookie": "^2.2.6",
71
+ "@types/jsdom-global": "^3.0.2",
72
+ "@types/react": "^16.9.35",
73
+ "@ungap/url-search-params": "^0.2.0",
74
+ "babel-jest": "^29.5.0",
75
+ "babel-loader": "^8.2.2",
76
+ "base64-url": "^2.3.3",
77
+ "chai": "^4.3.7",
78
+ "cross-env": "^7.0.2",
79
+ "cucumber": "^6.0.5",
80
+ "express": "^4.17.1",
81
+ "jest": "^29.5.0",
82
+ "jest-cucumber": "^3.0.1",
83
+ "jest-environment-jsdom": "^29.5.0",
84
+ "microbundle": "^0.13.0",
85
+ "msw": "^0.36.8",
86
+ "np": "^6.2.3",
87
+ "npm-run-all": "^4.1.5",
88
+ "parcel": "^1.12.3",
89
+ "parcel-bundler": "^1.12.4",
90
+ "playwright": "^1.33.0-alpha-mar-29-2023",
91
+ "react": "^16.13.1",
92
+ "react-bootstrap": "^1.0.1",
93
+ "react-dom": "^16.13.1",
94
+ "react-url-query": "^1.5.0",
95
+ "serve": "^11.3.0",
96
+ "size-limit": "^8.2.4",
97
+ "ts-jest": "^29.1.1",
98
+ "ts-loader": "^7.0.4",
99
+ "ts-node": "^8.10.2",
100
+ "tsd": "^0.13.1",
101
+ "typedoc": "^0.24.8",
102
+ "typescript": "^5.1.6",
103
+ "webpack": "^5.88.0",
104
+ "webpack-bundle-analyzer": "^4.9.0",
105
+ "webpack-cli": "^5.1.4",
106
+ "webpack-visualizer-plugin": "^0.1.11"
107
+ },
108
+ "prettier": {},
109
+ "dependencies": {
110
+ "debug": "^3.2.6",
111
+ "js-cookie": "^3.0.5"
112
+ },
113
+ "browserslist": "> 0.25%, not dead",
114
+ "msw": {
115
+ "workerDirectory": "demo/dist"
116
+ },
117
+ "size-limit": [
118
+ {
119
+ "path": "dist/squatch.js",
120
+ "limit": "12.5 kB"
121
+ }
122
+ ]
123
+ }