orator-conversion 1.0.10 → 1.0.12
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/package.json +14 -6
- package/source/Conversion-Core.js +1 -1
- package/source/Orator-File-Translation.js +1 -1
- package/source/endpoints/Endpoint-Image-JpgToPng.js +1 -1
- package/source/endpoints/Endpoint-Image-PngToJpg.js +1 -1
- package/test/Conversion-Core_tests.js +1 -1
- package/test/Orator-File-Translation_tests.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "orator-conversion",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12",
|
|
4
4
|
"description": "File format conversion endpoints for Orator service servers.",
|
|
5
5
|
"main": "source/Orator-File-Translation.js",
|
|
6
6
|
"scripts": {
|
|
@@ -85,19 +85,27 @@
|
|
|
85
85
|
"Default": 104857600
|
|
86
86
|
}
|
|
87
87
|
]
|
|
88
|
+
},
|
|
89
|
+
"docker": {
|
|
90
|
+
"image": "retold-beacon-host-orator-conversion",
|
|
91
|
+
"dockerfile": "retold-beacon-host-orator-conversion.Dockerfile",
|
|
92
|
+
"dataMountPath": "/app/data",
|
|
93
|
+
"configMountPath": "/app/data/config.json",
|
|
94
|
+
"exposedPort": 54500,
|
|
95
|
+
"hostPackage": "retold-beacon-host"
|
|
88
96
|
}
|
|
89
97
|
},
|
|
90
98
|
"dependencies": {
|
|
91
99
|
"fable-serviceproviderbase": "^3.0.19",
|
|
92
|
-
"sharp": "^0.
|
|
93
|
-
"ultravisor-beacon": "^0.0.
|
|
100
|
+
"retold-sharp": "^0.0.2",
|
|
101
|
+
"ultravisor-beacon": "^0.0.13",
|
|
94
102
|
"ws": "^8.20.0"
|
|
95
103
|
},
|
|
96
104
|
"devDependencies": {
|
|
97
|
-
"fable": "^3.1.
|
|
98
|
-
"orator": "^6.0
|
|
105
|
+
"fable": "^3.1.71",
|
|
106
|
+
"orator": "^6.1.0",
|
|
99
107
|
"orator-serviceserver-restify": "^2.0.10",
|
|
100
108
|
"pict-docuserve": "^0.1.5",
|
|
101
|
-
"quackage": "^1.1.
|
|
109
|
+
"quackage": "^1.1.3"
|
|
102
110
|
}
|
|
103
111
|
}
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
* - Audio segment extraction and waveform generation via ffmpeg
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
-
const libSharp = require('sharp');
|
|
17
|
+
const libSharp = require('retold-sharp');
|
|
18
18
|
const libChildProcess = require('child_process');
|
|
19
19
|
const libFS = require('fs');
|
|
20
20
|
const libPath = require('path');
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const libFableServiceProviderBase = require('fable-serviceproviderbase');
|
|
2
2
|
|
|
3
|
-
const libSharp = require('sharp');
|
|
3
|
+
const libSharp = require('retold-sharp');
|
|
4
4
|
const libChildProcess = require('child_process');
|
|
5
5
|
const libFS = require('fs');
|
|
6
6
|
const libPath = require('path');
|
|
@@ -16,7 +16,7 @@ const libOrator = require('orator');
|
|
|
16
16
|
const libOratorServiceServerRestify = require('orator-serviceserver-restify');
|
|
17
17
|
const libOratorFileTranslation = require('../source/Orator-File-Translation.js');
|
|
18
18
|
|
|
19
|
-
const libSharp = require('sharp');
|
|
19
|
+
const libSharp = require('retold-sharp');
|
|
20
20
|
|
|
21
21
|
const defaultFableSettings = (
|
|
22
22
|
{
|