-
-
Notifications
You must be signed in to change notification settings - Fork 245
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 883 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "cpd",
"version": "5.0.11",
"description": "Copy/paste detector — fast Rust-based CLI for code duplication detection",
"homepage": "https://jscpd.dev",
"bin": {
"cpd": "./run-cpd.js"
},
"files": [
"run-cpd.js",
"platform-map.js"
],
"optionalDependencies": {
"cpd-linux-x64-gnu": "5.0.11",
"cpd-linux-arm64-gnu": "5.0.11",
"cpd-linux-x64-musl": "5.0.11",
"cpd-darwin-arm64": "5.0.11",
"cpd-darwin-x64": "5.0.11",
"cpd-windows-x64-msvc": "5.0.11"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kucherenko/jscpd.git",
"directory": "rust"
},
"keywords": [
"cpd",
"copy-paste-detector",
"duplicate",
"jscpd",
"code-duplication",
"cli",
"rust"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}