cuke-dedup-linux-x64-gnu 0.1.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.
- package/README.md +26 -0
- package/THIRD-PARTY-LICENSES.md +1 -1
- package/bin/cuke-dedup +0 -0
- package/package.json +6 -3
package/README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# cuke-dedup-linux-x64-gnu
|
|
2
|
+
|
|
3
|
+
Linux x64 glibc native binary for cuke-dedup.
|
|
4
|
+
|
|
5
|
+
This is an optional native binary package for
|
|
6
|
+
[CukeDedup](https://www.npmjs.com/package/cuke-dedup), a Rust-powered static
|
|
7
|
+
analyzer for duplicate and reusable Cucumber step definitions.
|
|
8
|
+
|
|
9
|
+
Do not install this package directly. Install the main package instead:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm install --save-dev cuke-dedup
|
|
13
|
+
# or
|
|
14
|
+
npm install --global cuke-dedup
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
This package contains only the native `cuke-dedup` binary for its target
|
|
18
|
+
platform, plus package metadata, legal notices, and this README.
|
|
19
|
+
|
|
20
|
+
Supply-chain notes:
|
|
21
|
+
|
|
22
|
+
- no runtime dependencies;
|
|
23
|
+
- no install scripts or postinstall downloads;
|
|
24
|
+
- published from the project GitHub Actions workflow with npm provenance enabled;
|
|
25
|
+
- npm registry signatures and provenance can be checked with
|
|
26
|
+
`npm audit signatures` from an installed project.
|
package/THIRD-PARTY-LICENSES.md
CHANGED
|
@@ -77,7 +77,7 @@ regenerated whenever `Cargo.lock` changes.
|
|
|
77
77
|
| thiserror-impl | 2.0.20 | MIT OR Apache-2.0 | David Tolnay <dtolnay@gmail.com> | https://github.com/dtolnay/thiserror |
|
|
78
78
|
| tinyvec | 1.12.0 | Zlib OR Apache-2.0 OR MIT | Lokathor <zefria@gmail.com> | https://github.com/Lokathor/tinyvec |
|
|
79
79
|
| tinyvec_macros | 0.1.1 | MIT OR Apache-2.0 OR Zlib | Soveu <marx.tomasz@gmail.com> | https://github.com/Soveu/tinyvec_macros |
|
|
80
|
-
| tree-sitter | 0.
|
|
80
|
+
| tree-sitter | 0.27.0 | MIT | Max Brunsfeld <maxbrunsfeld@gmail.com>, Amaan Qureshi <amaanq12@gmail.com> | https://github.com/tree-sitter/tree-sitter |
|
|
81
81
|
| tree-sitter-javascript | 0.25.0 | MIT | Max Brunsfeld <maxbrunsfeld@gmail.com>, Amaan Qureshi <amaanq12@gmail.com> | https://github.com/tree-sitter/tree-sitter-javascript |
|
|
82
82
|
| tree-sitter-language | 0.1.8 | MIT | Max Brunsfeld <maxbrunsfeld@gmail.com>, Amaan Qureshi <amaanq12@gmail.com> | https://github.com/tree-sitter/tree-sitter |
|
|
83
83
|
| tree-sitter-typescript | 0.23.2 | MIT | Max Brunsfeld <maxbrunsfeld@gmail.com>, Amaan Qureshi <amaanq12@gmail.com> | https://github.com/tree-sitter/tree-sitter-typescript |
|
package/bin/cuke-dedup
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cuke-dedup-linux-x64-gnu",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Linux x64 glibc native binary for cuke-dedup",
|
|
5
5
|
"os": ["linux"],
|
|
6
6
|
"cpu": ["x64"],
|
|
7
7
|
"libc": ["glibc"],
|
|
8
|
-
"files": ["bin/cuke-dedup", "LICENSE", "THIRD-PARTY-LICENSES.md"],
|
|
9
|
-
"repository":
|
|
8
|
+
"files": ["bin/cuke-dedup", "README.md", "LICENSE", "THIRD-PARTY-LICENSES.md"],
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/figueiredoluiz/cuke-dedup.git"
|
|
12
|
+
},
|
|
10
13
|
"license": "MIT"
|
|
11
14
|
}
|