-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 871 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 871 Bytes
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
{
"name": "simple-exiftool",
"version": "1.1.0",
"description": "Extracting metadata from media files with exiftool, including but not limited to mp4, mov, 3gp, jpg, png, gif, pdf.",
"main": "./lib/exif",
"scripts": {
"test": "./node_modules/.bin/mocha ./test"
},
"author": {
"name": "Uğur Baltacı",
"email": "me@ugurbaltaci.com"
},
"engines": {
"node": ">= 4.x.x"
},
"dependencies": {
"lodash": "^4.13.1"
},
"devDependencies": {
"mocha": "2.5.3",
"chai": "3.5.0"
},
"repository": {
"type": "git",
"url": "git@github.com:ubaltaci/simple-exiftool.git"
},
"keywords": [
"exif",
"metadata",
"image",
"video duration",
"image type",
"exiftool",
"mp4",
"avi",
"jpg",
"png",
"mov",
"3gp",
"pdf",
"ffprobe",
"mediainfo"
],
"license": "MIT"
}