forked from Sobesednik/node-exiftool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.12 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
{
"name": "node-exiftool",
"version": "2.3.0",
"description": "A Node.js interface to exiftool command-line application.",
"main": "src/index.js",
"files": [
"src/"
],
"scripts": {
"test": "cross-env ZOROASTER_TIMEOUT=10000 zoroaster test/spec",
"test-watch": "zoroaster test/spec --watch",
"bench": "node benchmark/run",
"callback-example": "LOCAL=1 node examples/callback examples/28.jpg",
"write-example": "node examples/write_metadata/index"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sobesednik/node-exiftool.git"
},
"keywords": [
"metadata",
"exiftool",
"IPTC",
"XMP"
],
"author": "Anton <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sobesednik/node-exiftool/issues"
},
"homepage": "https://github.com/Sobesednik/node-exiftool#readme",
"devDependencies": {
"cross-env": "5.0.0",
"exiftool-context": "1.4.0",
"makepromise": "1.0.0",
"ps-node": "0.1.6",
"zoroaster": "0.4.6"
},
"dependencies": {
"is-stream": "1.1.0",
"restream": "1.2.0",
"wrote": "0.6.1"
}
}