forked from titarenko/fast-exif
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 854 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 854 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
{
"name": "fast-exif",
"version": "1.0.1",
"description": "Fast EXIF extraction without reading whole file into memory.",
"main": "index.js",
"dependencies": {
"exif-reader": "^1.0.0"
},
"devDependencies": {
"coveralls": "^2.11.12",
"istanbul": "^0.4.4",
"mocha": "^2.4.5",
"should": "^8.2.2"
},
"scripts": {
"test": "istanbul cover _mocha -- tests --recursive -R spec",
"release": "npm t && npm version patch && npm publish && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/titarenko/fast-exif.git"
},
"keywords": [
"fast",
"exif",
"jpeg",
"jpg"
],
"author": "Constantin Titarenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/titarenko/fast-exif/issues"
},
"homepage": "https://github.com/titarenko/fast-exif#readme"
}