-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (34 loc) · 777 Bytes
/
package.json
File metadata and controls
35 lines (34 loc) · 777 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
{
"name": "jpeg",
"version": "2.0.0",
"main": "build/Release/jpeg",
"description": "A C++ module for node-js that converts RGB and RGBA buffers to a JPEG images (in memory).",
"keywords": [
"jpg",
"rgba",
"rgb",
"image",
"picture"
],
"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-jpeg.git"
},
"directories": {
"examples": "examples",
"src": "src"
},
"engines": {
"node": ">=0.1.93"
},
"scripts": {
"install": "node-gyp configure build"
}
}