imferno 0.1.2 → 0.1.3
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/README.md +2 -2
- package/bin/imferno.js +6 -6
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -26,8 +26,8 @@ imferno inspect ./path/to/imf/package
|
|
|
26
26
|
# Show detailed CPL information
|
|
27
27
|
imferno cpl <uuid> ./path/to/imf/package
|
|
28
28
|
|
|
29
|
-
#
|
|
30
|
-
imferno
|
|
29
|
+
# Export a full report
|
|
30
|
+
imferno export ./path/to/imf/package
|
|
31
31
|
|
|
32
32
|
# Show version
|
|
33
33
|
imferno --version
|
package/bin/imferno.js
CHANGED
|
@@ -4,12 +4,12 @@ const { execFileSync } = require("child_process");
|
|
|
4
4
|
const path = require("path");
|
|
5
5
|
|
|
6
6
|
const PLATFORMS = {
|
|
7
|
-
"linux-x64": "imferno
|
|
8
|
-
"linux-arm64": "imferno
|
|
9
|
-
"darwin-x64": "imferno
|
|
10
|
-
"darwin-arm64": "imferno
|
|
11
|
-
"win32-x64": "imferno
|
|
12
|
-
"win32-arm64": "imferno
|
|
7
|
+
"linux-x64": "@imferno/linux-x64-gnu",
|
|
8
|
+
"linux-arm64": "@imferno/linux-arm64-gnu",
|
|
9
|
+
"darwin-x64": "@imferno/darwin-x64",
|
|
10
|
+
"darwin-arm64": "@imferno/darwin-arm64",
|
|
11
|
+
"win32-x64": "@imferno/win32-x64-msvc",
|
|
12
|
+
"win32-arm64": "@imferno/win32-arm64-msvc",
|
|
13
13
|
};
|
|
14
14
|
|
|
15
15
|
const key = `${process.platform}-${process.arch}`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "imferno",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "SMPTE ST 2067 IMF validator and inspector",
|
|
5
5
|
"bin": {
|
|
6
6
|
"imferno": "bin/imferno.js"
|
|
@@ -11,12 +11,12 @@
|
|
|
11
11
|
"LICENSE"
|
|
12
12
|
],
|
|
13
13
|
"optionalDependencies": {
|
|
14
|
-
"imferno
|
|
15
|
-
"imferno
|
|
16
|
-
"imferno
|
|
17
|
-
"imferno
|
|
18
|
-
"imferno
|
|
19
|
-
"imferno
|
|
14
|
+
"@imferno/linux-x64-gnu": "0.1.3",
|
|
15
|
+
"@imferno/linux-arm64-gnu": "0.1.3",
|
|
16
|
+
"@imferno/darwin-x64": "0.1.3",
|
|
17
|
+
"@imferno/darwin-arm64": "0.1.3",
|
|
18
|
+
"@imferno/win32-x64-msvc": "0.1.3",
|
|
19
|
+
"@imferno/win32-arm64-msvc": "0.1.3"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"access": "public"
|