-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
47 lines (47 loc) · 1.02 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
{
"name": "easy-gd",
"version": "1.0.1",
"description": "A simplified Node.js wrapper around GD image manipulation library with extra features making your life easier.",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec --colors 2>/dev/null"
},
"repository": {
"type": "git",
"url": "https://github.com/furagu/easy-gd.git"
},
"keywords": [
"image",
"graphics",
"resize",
"watermark",
"gd",
"easy",
"libgd",
"png",
"jpg",
"gif",
"library"
],
"author": "Egor Balyshev",
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/furagu/easy-gd/issues"
},
"dependencies": {
"node-gd": "~0.2.3",
"buffertools": "~2.1.2",
"underscore": "~1.7.0",
"exif-parser": "~0.1.7",
"vargs-callback": "~0.2.4",
"clone": "~1.0.0",
"async": "~0.9.0",
"readable-stream": "~1.0.0"
},
"devDependencies": {
"should": "~5.0.0",
"istanbul": "~0.1.0",
"mocha": "~2.1.0"
}
}