@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 +9 -0
- package/Sarif.Converters.pdb +0 -0
- package/Sarif.Driver.pdb +0 -0
- package/Sarif.Multitool.Library.pdb +0 -0
- package/Sarif.Multitool.exe +0 -0
- package/Sarif.Multitool.pdb +0 -0
- package/Sarif.WorkItems.pdb +0 -0
- package/Sarif.pdb +0 -0
- package/WorkItems.pdb +0 -0
- package/bin.js +7 -0
- package/index.d.ts +10 -0
- package/index.js +1 -0
- package/package.json +13 -0
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
|
package/Sarif.Driver.pdb
ADDED
|
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
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
|
+
}
|