-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.03 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.03 KB
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
{
"name": "image-headers",
"version": "0.3.3",
"description": "Parse image headers from a stream without loading the entire image.",
"keywords": ["exif", "jpeg", "jpg", "gif", "png", "streaming"],
"repository": {
"type": "git",
"url": "git://github.com/sujal/node-image-headers.git"
},
"bugs": {
"url": "http://github.com/sujal/node-image-headers/issues"
},
"author": {
"name": "Sujal Shah",
"email": "codesujal@gmail.com",
"url": "http://sujal.net"
},
"licenses": [ {
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
} ],
"main": "./lib/image_headers",
"dependencies": {
"exif": "git://github.com/sujal/node-exif.git#image-headers-0.3.3"
},
"devDependencies": {
"coffee-script": "*"
, "buffered-reader": "*"
, "mocha": "*"
, "should": "*"
},
"scripts": {
"test": "NODE_PATH=lib NODE_ENV=test node_modules/mocha/bin/mocha -R dot --recursive --require coffee-script --timeout 15000 test/*.coffee"
},
"engines": { "node": ">= 0.8.0" }
}