security-harness-kit 0.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.
- package/README.md +13 -0
- package/package.json +25 -0
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# security-harness-kit (shk)
|
|
2
|
+
|
|
3
|
+
This package name is reserved for the **shk** CLI. The real, versioned package is
|
|
4
|
+
published automatically by CI from
|
|
5
|
+
[Kazuki-tam/security-harness-kit](https://github.com/Kazuki-tam/security-harness-kit).
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g security-harness-kit
|
|
9
|
+
shk --version
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
This `0.0.1` entry is a placeholder published while the release pipeline was set
|
|
13
|
+
up; real releases are published at `0.3.x` and above.
|
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "security-harness-kit",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Placeholder. The shk CLI is published here automatically by CI. Install with: npm install -g security-harness-kit (the installed command is `shk`).",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "https://github.com/Kazuki-tam/security-harness-kit",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/Kazuki-tam/security-harness-kit.git"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/Kazuki-tam/security-harness-kit/issues"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"security",
|
|
16
|
+
"secrets",
|
|
17
|
+
"pii",
|
|
18
|
+
"scanner",
|
|
19
|
+
"cli",
|
|
20
|
+
"shk"
|
|
21
|
+
],
|
|
22
|
+
"files": [
|
|
23
|
+
"README.md"
|
|
24
|
+
]
|
|
25
|
+
}
|