@microsoft/sarif-multitool-win32 2.4.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/README.md ADDED
@@ -0,0 +1,9 @@
1
+ <!--
2
+ Copyright (c) Microsoft Corporation. All rights reserved.
3
+ Licensed under the MIT License.
4
+ -->
5
+
6
+ # sarif-multitool
7
+
8
+ Use the SARIF Multitool to transform, enrich, filter, result match, and do other common operations against SARIF files.
9
+ This is a platform-specific package; please use [sarif-multitool](https://www.npmjs.com/package/@microsoft/sarif-multitool), which will download and invoke the right version of the Multitool for you.
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/Sarif.pdb ADDED
Binary file
package/WorkItems.pdb ADDED
Binary file
package/bin.js ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env node
2
+ const {status} = require('child_process').spawnSync(
3
+ require('./'),
4
+ process.argv.slice(2),
5
+ { shell: true, stdio: 'inherit' }
6
+ )
7
+ process.exit(status)
package/index.d.ts ADDED
@@ -0,0 +1,10 @@
1
+ /**
2
+ * An absolute path to the Sarif.Multitool executable.
3
+ * ```
4
+ * import {spawnSync} from 'child_process'
5
+ * import multitoolPath from '@microsoft/sarif-multitool'
6
+ * spawnSync(multitoolPath, ['help'], { stdio: 'inherit' })
7
+ * ```
8
+ */
9
+ declare const _default: string;
10
+ export = _default;
package/index.js ADDED
@@ -0,0 +1 @@
1
+ module.exports = require('path').join(__dirname, 'Sarif.Multitool.exe')
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "@microsoft/sarif-multitool-win32",
3
+ "description": "SARIF Multitool for Windows (Win32)",
4
+ "version": "2.4.12",
5
+ "author": "Microsoft",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/microsoft/sarif-sdk"
10
+ },
11
+ "os": ["win32"],
12
+ "bin": "./bin.js"
13
+ }