-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 949 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 949 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
43
{
"name": "repodiffmatch",
"version": "1.0.0",
"description": "CLI tool to compare GitHub repositories for plagiarism detection",
"main": "index.js",
"bin": {
"repodm": "./index.js"
},
"scripts": {
"start": "node --max-old-space-size=8192 index.js",
"test": "node index.js --version"
},
"dependencies": {
"commander": "^9.4.1",
"axios": "^1.6.0",
"chalk": "^4.1.2",
"ora": "^5.4.1"
},
"keywords": [
"cli",
"github",
"plagiarism",
"comparison",
"code-analysis",
"similarity",
"repository",
"diff"
],
"author": "tungle2709",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tungle2709/RepoDiffMatch.git"
},
"bugs": {
"url": "https://github.com/tungle2709/RepoDiffMatch/issues"
},
"homepage": "https://github.com/tungle2709/RepoDiffMatch#readme",
"engines": {
"node": ">=14.0.0"
},
"preferGlobal": true
}