-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.46 KB
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
56
57
58
59
60
{
"name": "image-duplicate-remover",
"version": "0.2.2",
"description": "Remove duplicate images from the two given directories recursively",
"homepage": "https://github.com/paazmaya/image-duplicate-remover",
"main": "index.js",
"bin": "bin/image-duplicate-remover.js",
"scripts": {
"lint": "eslint index.js bin lib",
"test": "nyc --all --exclude tests tape tests/*_test.js tests/*/*_test.js && rm -rf tmp",
"coverage": "nyc --all --exclude tests report --reporter=text-lcov > coverage.lcov && codecov"
},
"engines": {
"node": ">=8.11.1"
},
"files": [
"bin",
"lib",
"index.js",
"npm-shrinkwrap.json",
"package.json",
"LICENSE"
],
"keywords": [
"image",
"files",
"dublicate",
"reduce",
"remove",
"organize"
],
"author": {
"name": "Juga Paazmaya",
"email": "paazmaya@yahoo.com",
"url": "https://paazmaya.fi"
},
"repository": {
"type": "git",
"url": "git@github.com:paazmaya/image-duplicate-remover.git"
},
"bugs": {
"url": "https://github.com/paazmaya/image-duplicate-remover/issues"
},
"license": "MIT",
"dependencies": {
"better-sqlite3": "~5.4.0",
"chalk": "~2.4.1",
"hasha": "~3.0.0",
"image-extensions": "~1.1.0",
"optionator": "~0.9.0",
"readline-sync": "~1.4.9"
},
"devDependencies": {
"codecov": "^3.1.0",
"eslint": "^5.10.0",
"eslint-config-paazmaya": "^9.0.0",
"nyc": "^13.2.0",
"tape": "^5.9.0"
}
}