@checkmarkdevtools/commitlint-plugin-rai 0.0.0 → 0.1.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 (3) hide show
  1. package/README.md +1 -1
  2. package/bom.json +144 -0
  3. package/package.json +4 -3
package/README.md CHANGED
@@ -39,4 +39,4 @@ All patterns are case-insensitive.
39
39
 
40
40
  ## License
41
41
 
42
- Polyform Shield 1.0.0
42
+ PolyForm Shield License 1.0.0
package/bom.json ADDED
@@ -0,0 +1,144 @@
1
+ {
2
+ "$schema": "http://cyclonedx.org/schema/bom-1.6.schema.json",
3
+ "bomFormat": "CycloneDX",
4
+ "specVersion": "1.6",
5
+ "version": 1,
6
+ "metadata": {
7
+ "tools": {
8
+ "components": [
9
+ {
10
+ "type": "application",
11
+ "name": "npm",
12
+ "version": "11.6.2"
13
+ },
14
+ {
15
+ "type": "library",
16
+ "name": "cyclonedx-library",
17
+ "group": "@cyclonedx",
18
+ "version": "9.4.1",
19
+ "author": "Jan Kowalleck",
20
+ "description": "Core functionality of CycloneDX for JavaScript (Node.js or WebBrowser).",
21
+ "licenses": [
22
+ {
23
+ "license": {
24
+ "id": "Apache-2.0"
25
+ }
26
+ }
27
+ ],
28
+ "externalReferences": [
29
+ {
30
+ "url": "https://github.com/CycloneDX/cyclonedx-javascript-library/issues",
31
+ "type": "issue-tracker",
32
+ "comment": "as detected from PackageJson property \"bugs.url\""
33
+ },
34
+ {
35
+ "url": "git+https://github.com/CycloneDX/cyclonedx-javascript-library.git",
36
+ "type": "vcs",
37
+ "comment": "as detected from PackageJson property \"repository.url\""
38
+ },
39
+ {
40
+ "url": "https://github.com/CycloneDX/cyclonedx-javascript-library#readme",
41
+ "type": "website",
42
+ "comment": "as detected from PackageJson property \"homepage\""
43
+ }
44
+ ]
45
+ },
46
+ {
47
+ "type": "application",
48
+ "name": "cyclonedx-npm",
49
+ "group": "@cyclonedx",
50
+ "version": "4.1.2",
51
+ "author": "Jan Kowalleck",
52
+ "description": "Create CycloneDX Software Bill of Materials (SBOM) from NPM projects.",
53
+ "licenses": [
54
+ {
55
+ "license": {
56
+ "id": "Apache-2.0"
57
+ }
58
+ }
59
+ ],
60
+ "externalReferences": [
61
+ {
62
+ "url": "https://github.com/CycloneDX/cyclonedx-node-npm/issues",
63
+ "type": "issue-tracker",
64
+ "comment": "as detected from PackageJson property \"bugs.url\""
65
+ },
66
+ {
67
+ "url": "git+https://github.com/CycloneDX/cyclonedx-node-npm.git",
68
+ "type": "vcs",
69
+ "comment": "as detected from PackageJson property \"repository.url\""
70
+ },
71
+ {
72
+ "url": "https://github.com/CycloneDX/cyclonedx-node-npm#readme",
73
+ "type": "website",
74
+ "comment": "as detected from PackageJson property \"homepage\""
75
+ }
76
+ ]
77
+ }
78
+ ]
79
+ },
80
+ "component": {
81
+ "type": "library",
82
+ "name": "rai-lint",
83
+ "bom-ref": "rai-lint",
84
+ "author": "Ashley Childress",
85
+ "description": "Dual-language commit-message validation framework for AI-responsible development",
86
+ "licenses": [
87
+ {
88
+ "expression": "LicenseRef-PolyForm-Shield-1.0.0",
89
+ "acknowledgement": "declared"
90
+ }
91
+ ],
92
+ "purl": "pkg:npm/rai-lint",
93
+ "properties": [
94
+ {
95
+ "name": "cdx:npm:package:path",
96
+ "value": ""
97
+ },
98
+ {
99
+ "name": "cdx:npm:package:private",
100
+ "value": "true"
101
+ }
102
+ ]
103
+ },
104
+ "properties": [
105
+ {
106
+ "name": "cdx:reproducible",
107
+ "value": "true"
108
+ }
109
+ ]
110
+ },
111
+ "components": [
112
+ {
113
+ "type": "library",
114
+ "name": "commitlint-plugin-rai",
115
+ "group": "@checkmarkdevtools",
116
+ "version": "0.1.1",
117
+ "bom-ref": "rai-lint|@checkmarkdevtools/commitlint-plugin-rai@0.1.1",
118
+ "licenses": [
119
+ {
120
+ "expression": "LicenseRef-PolyForm-Shield-1.0.0",
121
+ "acknowledgement": "declared"
122
+ }
123
+ ],
124
+ "purl": "pkg:npm/%40checkmarkdevtools/commitlint-plugin-rai@0.1.1",
125
+ "properties": [
126
+ {
127
+ "name": "cdx:npm:package:path",
128
+ "value": "node_modules/@checkmarkdevtools/commitlint-plugin-rai"
129
+ }
130
+ ]
131
+ }
132
+ ],
133
+ "dependencies": [
134
+ {
135
+ "ref": "rai-lint",
136
+ "dependsOn": [
137
+ "rai-lint|@checkmarkdevtools/commitlint-plugin-rai@0.1.1"
138
+ ]
139
+ },
140
+ {
141
+ "ref": "rai-lint|@checkmarkdevtools/commitlint-plugin-rai@0.1.1"
142
+ }
143
+ ]
144
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkmarkdevtools/commitlint-plugin-rai",
3
- "version": "0.0.0",
3
+ "version": "0.1.1",
4
4
  "description": "Commitlint plugin for RAI footer validation",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -14,6 +14,7 @@
14
14
  },
15
15
  "files": [
16
16
  "dist",
17
+ "bom.json",
17
18
  "README.md"
18
19
  ],
19
20
  "engines": {
@@ -34,7 +35,7 @@
34
35
  "ai-attribution"
35
36
  ],
36
37
  "author": "Ashley Childress",
37
- "license": "Polyform-Shield-1.0.0",
38
+ "license": "LicenseRef-PolyForm-Shield-1.0.0",
38
39
  "repository": {
39
40
  "type": "git",
40
41
  "url": "https://github.com/ChecKMarKDevTools/rai-lint.git",
@@ -49,7 +50,7 @@
49
50
  },
50
51
  "devDependencies": {
51
52
  "@commitlint/types": "^20.0.0",
52
- "@types/node": "^24.10.0",
53
+ "@types/node": "^25.0.3",
53
54
  "@vitest/coverage-v8": "^4.0.13",
54
55
  "typescript": "^5.9.3",
55
56
  "vitest": "^4.0.7"