-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 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
{
"name": "has-exif-cli",
"version": "1.3.0",
"description": "Checks if an image file has EXIF data. Available as CLI. Can be used in CI automation. Supports both JPG and WEBP image format",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/gemal/node-has-exif-cli"
},
"scripts": {
"test": "mocha"
},
"author": "Henrik Gemal <[email protected]> (http://gemal.dk/)",
"license": "MIT",
"bin": {
"has-exif-cli": "index.js"
},
"bugs": {
"url": "https://github.com/gemal/node-has-exif-cli/issues"
},
"keywords": [
"exif",
"cli",
"check",
"automate",
"image",
"ci"
],
"homepage": "https://github.com/gemal/node-has-exif-cli",
"dependencies": {
"commander": "^9.0.0",
"exifreader": "^4.6.0"
},
"devDependencies": {
"chai": "^4.3.4",
"check-package-lock": "^1.5.0",
"codecov": "^3.8.2",
"eslint": "^8.8.0",
"eslint-config-google": "^0.14.0",
"expect": "^29.2.2",
"lintspaces-cli": "^0.7.1",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"snyk": "^1.607.0"
}
}