-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.14 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
{
"name": "@mattduffy/exiftool",
"version": "1.14.1",
"description": "A simple object oriented wrapper for the exiftool image metadata utility.",
"author": "[email protected]",
"license": "ISC",
"main": "index.js",
"type": "module",
"homepage": "https://github.com/mattduffy/exiftool#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mattduffy/exiftool.git"
},
"bugs": {
"url": "https://github.com/mattduffy/exiftool/issues"
},
"exports": {
".": "./src/index.js",
"./which.js": "./src/which.js",
"./package.json": "./package.json"
},
"scripts": {
"test": "DEBUG=exiftool:* node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"devDependencies": {
"@jest/globals": "29.2.0",
"eslint": "8.26.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"jest": "29.1.2"
},
"dependencies": {
"debug": "4.3.4",
"fast-xml-parser": "4.3.6"
},
"keywords": [
"exiftool",
"EXIF",
"GPS",
"IPTC",
"XMP",
"metadata",
"image meta information",
"jpg",
"jpeg",
"png",
"gif",
"geotag"
]
}