-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.21 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
57
58
59
60
61
{
"name": "extractd",
"version": "2.1.2",
"description": "Extract previews from DSLR and mirrorless cameras' RAW files",
"main": "extractd.js",
"scripts": {
"test": "mocha --timeout 0 tests/single.js tests/compact.js tests/batch.js",
"start": "node extractd.js"
},
"author": {
"name": "Przemyslaw Pluta",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/przemyslawpluta/extractd.git"
},
"files": [
"examples",
"tests"
],
"bugs": {
"url": "https://github.com/przemyslawpluta/extractd/issues"
},
"homepage": "https://github.com/przemyslawpluta/extractd",
"keywords": [
"jpgfromraw",
"extractjpgfromraw",
"previewimage",
"extractpreview",
"photography",
"preview",
"raw",
"jpg",
"dslr",
"nef",
"cr2",
"cr3",
"raf",
"fff",
"rwl",
"x3f",
"dng",
"rw2",
"arw"
],
"engines": {
"node": ">= 12.22.0"
},
"dependencies": {
"base64-stream": "^1.0.0",
"exiftool-vendored": "^15.12.1",
"shortid": "^2.2.16",
"temp-dir": "^2.0.0"
},
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^9.2.1"
}
}