-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
38 lines (38 loc) · 830 Bytes
/
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
{
"name": "exiftool",
"version": "0.0.4",
"description": "Metadata extraction from numerous filetypes including JPEG, PNG, PDF, MOV, WMV, MP3, MP4, and others.",
"main": "./lib/exiftool",
"author": {
"name": "Nathan Peck",
"email": "[email protected]"
},
"devDependencies": {
"mocha": "1.17.1",
"chai": "1.8.1"
},
"repository": {
"type": "git",
"url": "git://github.com/nathanpeck/exiftool.git"
},
"keywords": [
"exif",
"file",
"metadata",
"binary",
"image",
"video",
"PNG",
"PDF"
],
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/nathanpeck/exiftool/master/LICENSE"
}
],
"readmeFilename": "README.md",
"scripts": {
"test": "./node_modules/.bin/mocha -R spec -s 100 ./tests/test.js"
}
}