-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
65 lines (65 loc) · 1.08 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "node-image",
"version": "0.7.1",
"description": "A Node.JS wrapper around FreeImage",
"main": "lib/image.js",
"author": "Mikael Bourges-Sevenier <[email protected]>",
"keywords": [
"jpeg",
"jpg",
"png",
"gif",
"bmp",
"jng",
"pnm",
"ppm",
"tga",
"tiff",
"psd",
"xbm",
"xpm",
"j2k",
"jpeg2000",
"jp2",
"sgi",
"exr",
"hdr",
"pict",
"raw",
"ico",
"wbmp",
"image",
"picture"
],
"maintainers": [
{
"name": "Mikael Bourges-Sevenier",
"email": "[email protected]",
"twitter": "msevenier"
}
],
"licenses": [
{
"type": "BSD",
"url": "http://github.com/mikeseven/node-image/raw/master/LICENSES"
}
],
"repository": {
"type": "git",
"url": "https://[email protected]/mikeseven/node-image.git"
},
"directories": {
"src": "src",
"lib": "lib",
"test": "test"
},
"engines": {
"node": "0.5.9-0.11.3"
},
"scripts": {
"install": "node-gyp rebuild"
},
"dependencies": {
"nan": "^0.8.0"
}
}