-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.3 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
56
{
"name": "exif-renamer",
"description": "A NodeJS library & shell command to rename photos using their EXIF data.",
"version": "1.2.2",
"homepage": "https://github.com/dylansmith/node-exif-renamer",
"author": {
"name": "Dylan Smith",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/dylansmith/node-exif-renamer.git"
},
"bugs": {
"url": "https://github.com/dylansmith/node-exif-renamer/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/dylansmith/node-exif-renamer/blob/master/LICENSE-MIT"
}
],
"bin": {
"exif-renamer": "./bin/exif-renamer"
},
"main": "lib/exif-renamer",
"engines": {
"node": ">= 6.11.5"
},
"scripts": {
"lint": "eslint demo lib test",
"test": "nyc mocha test",
"test-watch": "nyc mocha -w test"
},
"devDependencies": {
"async": "^1.5.2",
"eslint": "6.8.0",
"mocha": "6.2.2",
"nyc": "15.0.0",
"should": "^13.2.3",
"sinon": "^8.0.2"
},
"keywords": [],
"dependencies": {
"cli": "1.0.1",
"cli-color": "1.4.0",
"dateformat": "^1.0.12",
"exif-parser": "^0.1.12",
"glob": "7.1.6",
"handlebars": "4.5.3",
"lodash": "4.17.15",
"mkdirp": "^0.5.1",
"q": "1.0.0",
"watchr": "^2.6.0"
}
}