-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (39 loc) · 846 Bytes
/
package.json
File metadata and controls
40 lines (39 loc) · 846 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
37
38
39
{
"name": "image",
"version": "1.0.2",
"main": "lib/image.js",
"description": "This is a node.js module that unifies node-png, node-gif and node-jpeg modules.",
"keywords": [
"png",
"gif",
"jpeg",
"rgb",
"rgba",
"bgr",
"bgra",
"picture",
"image"
],
"author": {
"name": "Peteris Krumins",
"email": "peteris.krumins@gmail.com",
"web": "http://www.catonmat.net",
"twitter": "pkrumins"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/pkrumins/node-image.git"
},
"directories": {
"lib": "lib"
},
"engines": {
"node": ">=0.1.93"
},
"dependencies": {
"png": "*",
"jpeg": "*",
"gif": "*"
}
}