-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 960 Bytes
/
package.json
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
44
{
"name": "duplifiler",
"version": "1.0.4",
"exports": "./index.js",
"license": "MIT",
"module": "node",
"type": "module",
"description": "Identifies files with the same name at the same path with different extensions",
"bugs": "https://github.com/RobbeCl/duplifiler/issues",
"repository": {
"type": "git",
"url": "https://github.com/RobbeCl/duplifiler.git"
},
"homepage": "https://github.com/RobbeCl/duplifiler",
"author": {
"name": "Robbe Claessens",
"url": "https://github.com/RobbeCl"
},
"keywords": [
"duplicate",
"files",
"extension"
],
"files": [
"!test/**/*",
"lib",
"index.js",
"package.json",
"README.md"
],
"bin": {
"duplifiler": "./index.js"
},
"dependencies": {
"commander": "^9.1.0",
"defaults": "^1.0.3",
"globby": "^13.1.1",
"read-package-json": "^5.0.0"
},
"devDependencies": {
"debug": "^4.3.4",
"eslint": "^8.13.0"
}
}