-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·55 lines (55 loc) · 1.33 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "dedupr",
"version": "2.0.2",
"description": "Node.js tool to find (or remove) duplicates from the specified folders.",
"homepage": "http://github.com/igoramadas/dedupr",
"author": "Igor Ramadas <[email protected]>",
"license": "MIT",
"subdomain": "dedupr",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"domains": [
"dedupr.devv.com"
],
"bin": {
"dedupr": "./bin/dedupr"
},
"scripts": {
"prepublishOnly": "./node_modules/.bin/tsc --removeComments",
"docs": "make docs"
},
"engines": {
"node": ">=12.0"
},
"dependencies": {
"anyhow": "^3.0.4",
"chalk": "^4.1.2",
"yargs": "^17.5.1"
},
"devDependencies": {
"@types/node": "^17.0.34",
"@types/yargs": "^17.0.10",
"typedoc": "^0.22.15",
"typescript": "^4.6.4"
},
"repository": {
"type": "git",
"url": "https://github.com/igoramadas/dedupr.git"
},
"keywords": [
"dedup.js",
"dedupr",
"dedup",
"deduplicator",
"duplicates"
],
"prettier": {
"trailingComma": "none",
"tabWidth": 4,
"semi": false,
"singleQuote": false,
"arrowParens": "always",
"bracketSpacing": false,
"printWidth": 250
}
}