forked from elad/node-imagemagick-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 813 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 813 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
{
"name": "imagemagick-native",
"description": "ImageMagick's Magick++ bindings for NodeJS",
"keywords": [
"imagemagick",
"magick++",
"resize",
"convert"
],
"version": "1.6.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/mash/node-imagemagick-native.git"
},
"author": "Masakazu Ohtsuka <o.masakazu@gmail.com> (http://maaash.jp/)",
"contributors": [],
"main": "./index.js",
"scripts": {
"test": "tap test/test.js test/test.async.js test/test.streams.js",
"install": "node-gyp rebuild"
},
"engines": {
"node": "*"
},
"dependencies": {
"nan": "~1.1.0",
"readable-stream": "*"
},
"devDependencies": {
"tap": "*",
"grunt": "~0.4",
"grunt-release": "~0.7",
"grunt-contrib-clean": "~0.5"
}
}