verimu 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 +25 -0
- package/dist/index.cjs +871 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +475 -0
- package/dist/index.d.ts +475 -0
- package/dist/index.mjs +820 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +65 -0
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# verimu
|
|
2
|
+
|
|
3
|
+
The NPM package for `verimu`, a tool for producing CRA-compliant SBOMs via CI / CD pipelines.
|
|
4
|
+
|
|
5
|
+
## Current and Planned Support
|
|
6
|
+
|
|
7
|
+
- [X] GitHub Actions
|
|
8
|
+
- [ ] GitLab CI
|
|
9
|
+
- [ ] Bitbucket Pipelines
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
## Currently Supported Package Managers
|
|
13
|
+
|
|
14
|
+
- [X] npm
|
|
15
|
+
- [ ] pip
|
|
16
|
+
- [ ] go
|
|
17
|
+
- [ ] cargo
|
|
18
|
+
|
|
19
|
+
## Development
|
|
20
|
+
|
|
21
|
+
To run the tests, use:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
npm test
|
|
25
|
+
```
|