-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 898 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 898 Bytes
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
{
"name": "exif-reader",
"version": "2.0.3",
"description": "A small EXIF image metadata reader",
"main": "index.js",
"types": "index.d.ts",
"directories": {
"test": "test"
},
"files": [
"tags.js",
"index.d.ts"
],
"scripts": {
"test": "UNEXPECTED_CHECK_MAX_ITERATIONS=10000 mocha && tsd"
},
"repository": {
"type": "git",
"url": "git://github.com/devongovett/exif-reader.git"
},
"keywords": [
"exif",
"image",
"metadata"
],
"author": "Devon Govett <devongovett@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/devongovett/exif-reader/issues"
},
"homepage": "https://github.com/devongovett/exif-reader",
"devDependencies": {
"@types/node": "*",
"chance-generators": "^3.5.2",
"mocha": "^10.2.0",
"tsd": "^0.31.2",
"unexpected": "^13.1.0",
"unexpected-check": "^3.1.0"
}
}