speaker-calibration 1.0.8 → 1.1.2
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/dist/main.js +1 -1
- package/dist/mlsGen.js +4 -4
- package/dist/mlsGen.wasm +0 -0
- package/package.json +10 -7
package/dist/mlsGen.js
CHANGED
|
@@ -1326,22 +1326,22 @@ var tempDouble;
|
|
|
1326
1326
|
var tempI64;
|
|
1327
1327
|
|
|
1328
1328
|
var ASM_CONSTS = {
|
|
1329
|
-
|
|
1329
|
+
9944289: function() {
|
|
1330
1330
|
return withBuiltinMalloc(function() {
|
|
1331
1331
|
return allocateUTF8(Module["ASAN_OPTIONS"] || 0);
|
|
1332
1332
|
});
|
|
1333
1333
|
},
|
|
1334
|
-
|
|
1334
|
+
9944386: function() {
|
|
1335
1335
|
return withBuiltinMalloc(function() {
|
|
1336
1336
|
return allocateUTF8(Module["LSAN_OPTIONS"] || 0);
|
|
1337
1337
|
});
|
|
1338
1338
|
},
|
|
1339
|
-
|
|
1339
|
+
9944483: function() {
|
|
1340
1340
|
return withBuiltinMalloc(function() {
|
|
1341
1341
|
return allocateUTF8(Module["UBSAN_OPTIONS"] || 0);
|
|
1342
1342
|
});
|
|
1343
1343
|
},
|
|
1344
|
-
|
|
1344
|
+
9944581: function() {
|
|
1345
1345
|
var setting = Module["printWithColors"];
|
|
1346
1346
|
if (setting != null) {
|
|
1347
1347
|
return setting;
|
package/dist/mlsGen.wasm
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "speaker-calibration",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "Speaker calibration library for auditory testing",
|
|
5
5
|
"main": "dist/main.js",
|
|
6
6
|
"directories": {
|
|
@@ -9,21 +9,18 @@
|
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build:prod": "webpack --mode production --progress",
|
|
11
11
|
"build:dev": "webpack --watch --mode development --progress",
|
|
12
|
+
"build:dev:analyze": "webpack --watch --mode development --progress --analyze",
|
|
12
13
|
"serve:dev": "nodemon ./dist/example/server.js",
|
|
13
14
|
"build:wasm": "make rebuild",
|
|
14
15
|
"lint": "eslint src --ext .js",
|
|
15
16
|
"lint:fix": "npm run lint -- --fix",
|
|
16
17
|
"format": "prettier --write \"**/*.{js,json,md,html,css}\"",
|
|
17
18
|
"build:doc": "jsdoc src -r -d ./doc",
|
|
18
|
-
"test": ""
|
|
19
|
+
"test": "jest",
|
|
20
|
+
"test:watch": "jest --watchAll --coverage"
|
|
19
21
|
},
|
|
20
22
|
"keywords": [],
|
|
21
23
|
"constributors": [
|
|
22
|
-
{
|
|
23
|
-
"name": "Augustin Burchell",
|
|
24
|
-
"email": "augustin.burchell@gmail.com",
|
|
25
|
-
"url": "https://aburchell.github.io/"
|
|
26
|
-
},
|
|
27
24
|
{
|
|
28
25
|
"name": "Hugo De Moraes",
|
|
29
26
|
"email": "demoraeshugo@gmail.com",
|
|
@@ -33,12 +30,17 @@
|
|
|
33
30
|
"license": "MIT",
|
|
34
31
|
"repository": "git://github.com/EasyEyes/speaker-calibration.git",
|
|
35
32
|
"dependencies": {
|
|
33
|
+
"fftw-js": "^0.1.4",
|
|
34
|
+
"path-browserify": "^1.0.1",
|
|
36
35
|
"peerjs": "^1.3.2",
|
|
37
36
|
"qrcode": "^1.4.4",
|
|
38
37
|
"socket.io-client": "^4.4.1",
|
|
39
38
|
"uuid": "^8.3.2"
|
|
40
39
|
},
|
|
41
40
|
"devDependencies": {
|
|
41
|
+
"@babel/core": "^7.17.9",
|
|
42
|
+
"@babel/preset-env": "^7.16.11",
|
|
43
|
+
"babel-jest": "^27.5.1",
|
|
42
44
|
"css-loader": "^5.2.6",
|
|
43
45
|
"eslint": "^8.10.0",
|
|
44
46
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
@@ -47,6 +49,7 @@
|
|
|
47
49
|
"eslint-plugin-import": "^2.25.4",
|
|
48
50
|
"eslint-plugin-no-floating-promise": "^1.0.2",
|
|
49
51
|
"express": "^4.17.1",
|
|
52
|
+
"jest": "^27.5.1",
|
|
50
53
|
"jsdoc": "^3.6.10",
|
|
51
54
|
"nodemon": "^2.0.15",
|
|
52
55
|
"prettier": "^2.5.1",
|