trooth 0.4.3 → 0.5.0

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.
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "trooth",
3
+ "version": "0.5.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "trooth",
9
+ "version": "0.5.0",
10
+ "license": "Apache-2.0",
11
+ "dependencies": {
12
+ "yaml": "2.9.1"
13
+ },
14
+ "bin": {
15
+ "trooth": "bin/trooth.mjs"
16
+ },
17
+ "engines": {
18
+ "node": ">=18"
19
+ }
20
+ },
21
+ "node_modules/yaml": {
22
+ "version": "2.9.1",
23
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.9.1.tgz",
24
+ "integrity": "sha512-3NxN8+78OdzbT7C/WjGsyfPAtJaN3FNDsWxv7Y7mcDsT/oOmgW8BpyQQFFBnvZE3j9Y2Sdz1ULFLezL7Eb2yFw==",
25
+ "license": "ISC",
26
+ "bin": {
27
+ "yaml": "bin.mjs"
28
+ },
29
+ "engines": {
30
+ "node": ">= 14.6"
31
+ },
32
+ "funding": {
33
+ "url": "https://github.com/sponsors/eemeli"
34
+ }
35
+ }
36
+ }
37
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "trooth",
3
- "version": "0.4.3",
4
- "description": "The Trooth Network from your terminal. Read a company's public, signed record with no key and no account: listing state, dates, live-probe and self-attestation counts, signing key id. Also reads what your own repo declares, offline. No verdict.",
3
+ "version": "0.5.0",
4
+ "description": "The Trooth Network from your terminal. Read a company's public record with no key and no account: listing and evidence state, dates, probe and self-attestation counts, signing key id. Also reads what your repo declares, offline. No verdict.",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "trooth": "bin/trooth.mjs"
@@ -9,7 +9,8 @@
9
9
  "files": [
10
10
  "bin/",
11
11
  "README.md",
12
- "LICENSE"
12
+ "LICENSE",
13
+ "npm-shrinkwrap.json"
13
14
  ],
14
15
  "engines": {
15
16
  "node": ">=18"
@@ -17,7 +18,7 @@
17
18
  "scripts": {
18
19
  "check": "node ./bin/trooth.mjs check",
19
20
  "lint": "node ./bin/trooth.mjs lint",
20
- "test": "node ./bin/trooth.mjs lint tests/fixtures/infra --json > /dev/null && node ./bin/trooth.mjs --version && node tests/action.test.mjs && node tests/lint.test.mjs"
21
+ "test": "node ./bin/trooth.mjs lint tests/fixtures/infra --json > /dev/null && node ./bin/trooth.mjs --version && node tests/action.test.mjs && node tests/lint.test.mjs && node tests/audit-fixtures.test.mjs"
21
22
  },
22
23
  "license": "Apache-2.0",
23
24
  "author": "Trooth, LLC",
@@ -45,5 +46,8 @@
45
46
  "terraform",
46
47
  "kubernetes",
47
48
  "cli"
48
- ]
49
+ ],
50
+ "dependencies": {
51
+ "yaml": "2.9.1"
52
+ }
49
53
  }