-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
39 lines (39 loc) · 971 Bytes
/
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
{
"name": "im-metadata",
"version": "3.0.1",
"description": "Retrieve image metadata using ImageMagick's identify command",
"main": "index.js",
"scripts": {
"test": "mocha test.js",
"hint": "./node_modules/.bin/jshint index.js test.js",
"watch": "./node_modules/.bin/mocha -w test.js"
},
"repository": {
"type": "git",
"url": "[email protected]:Turistforeningen/node-im-metadata.git"
},
"keywords": [
"ImageMagick",
"identify",
"image",
"metadata",
"exif"
],
"author": "Hans Kristian Flaatten <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Turistforeningen/node-im-metadata/issues"
},
"homepage": "https://github.com/Turistforeningen/node-im-metadata",
"devDependencies": {
"jshint": "~2",
"mocha": "~3.0.2"
},
"engines": {
"node": ">=0.10",
"iojs": ">=1.0.0"
},
"dependencies": {
"filesize-parser": "^1.3.0"
}
}