-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.24 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.24 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
{
"name": "sortr",
"version": "1.0.0",
"description": "CLI tool that organizes a directory of photos by sorting them into subdirectories named after date the photo was taken",
"main": "./bin/sortr.js",
"bin": {
"sortr": "./bin/sortr.js"
},
"engines": {
"node": ">= 10"
},
"keywords": [
"organize",
"photos",
"images",
"directories",
"date"
],
"directories": {
"example": "example"
},
"scripts": {
"lint": "eslint --cache . && echo \"eslint: no lint errors found\" || true",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/okize/sortr"
},
"author": "Morgan Wigmanich <okize123@gmail.com> (https://github.com/okize)",
"license": "MIT",
"dependencies": {
"bluebird": "^3.7.2",
"chalk": "^5.4.1",
"exifdata": "https://github.com/okize/exifdata/archive/0.2.1.tar.gz",
"fs-extra": "^11.3.0",
"is-jpg": "^3.0.0",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"optimist": "^0.6.1",
"read-chunk": "^5.0.0"
},
"devDependencies": {
"eslint-config-okize": "^1.7.0"
},
"bugs": {
"url": "https://github.com/okize/sortr/issues"
},
"homepage": "https://github.com/okize/sortr"
}