@kjanat-actionlint/actionlint-linux-arm 1.15.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.
- package/LICENSE.txt +22 -0
- package/README.md +6 -0
- package/bin/actionlint +0 -0
- package/package.json +29 -0
package/LICENSE.txt
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
the MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Kaj Kowalski
|
|
4
|
+
Copyright (c) 2021 rhysd
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
in the Software without restriction, including without limitation the rights
|
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
10
|
+
of the Software, and to permit persons to whom the Software is furnished to do so,
|
|
11
|
+
subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be included in all
|
|
14
|
+
copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
|
17
|
+
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
|
18
|
+
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
19
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
20
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
|
|
21
|
+
THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
22
|
+
|
package/README.md
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
# @kjanat-actionlint/actionlint-linux-arm
|
|
2
|
+
|
|
3
|
+
The `linux-arm` binary for [`@kjanat/actionlint`](https://www.npmjs.com/package/@kjanat/actionlint).
|
|
4
|
+
|
|
5
|
+
This package is installed automatically as an optional dependency of
|
|
6
|
+
`@kjanat/actionlint`; there is no reason to depend on it directly.
|
package/bin/actionlint
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@kjanat-actionlint/actionlint-linux-arm",
|
|
3
|
+
"version": "1.15.0",
|
|
4
|
+
"description": "The linux-arm binary for @kjanat/actionlint.",
|
|
5
|
+
"homepage": "https://actionlint.kjanat.dev",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://github.com/kjanat/actionlint/issues"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/kjanat/actionlint.git"
|
|
12
|
+
},
|
|
13
|
+
"funding": {
|
|
14
|
+
"type": "github",
|
|
15
|
+
"url": "https://github.com/sponsors/kjanat"
|
|
16
|
+
},
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"author": "Kaj Kowalski <info+actionlint@kajkowalski.nl>",
|
|
19
|
+
"os": [
|
|
20
|
+
"linux"
|
|
21
|
+
],
|
|
22
|
+
"cpu": [
|
|
23
|
+
"arm"
|
|
24
|
+
],
|
|
25
|
+
"files": [
|
|
26
|
+
"bin/"
|
|
27
|
+
],
|
|
28
|
+
"preferUnplugged": true
|
|
29
|
+
}
|