ose-auditor 1.0.1

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.
Files changed (1) hide show
  1. package/package.json +36 -0
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "ose-auditor",
3
+ "version": "1.0.1",
4
+ "description": "Run OSE Auditor (financial-logic security scanner for Node.js/TypeScript) without installing Python yourself -- this wrapper finds a Python 3 interpreter, installs the ose-auditor PyPI package on first run if needed, and forwards all arguments to it.",
5
+ "license": "MIT",
6
+ "bin": {
7
+ "ose-audit": "bin/ose.js",
8
+ "ose": "bin/ose.js"
9
+ },
10
+ "files": [
11
+ "bin/"
12
+ ],
13
+ "engines": {
14
+ "node": ">=16"
15
+ },
16
+ "scripts": {
17
+ "test": "node bin/ose.js --version"
18
+ },
19
+ "keywords": [
20
+ "security",
21
+ "audit",
22
+ "sast",
23
+ "vulnerability-scanner",
24
+ "nodejs",
25
+ "typescript",
26
+ "fintech"
27
+ ],
28
+ "homepage": "https://ose.crestsek.com",
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "https://github.com/crestseklogistics/ose-auditor"
32
+ },
33
+ "publishConfig": {
34
+ "access": "public"
35
+ }
36
+ }