forked from hacksparrow/node-easyimage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 775 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 775 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
{
"name": "easyimage",
"version": "2.1.0",
"description": "A promise-based, user-friendly module for processing images in Node.js",
"license": "MIT",
"main": "easyimage.js",
"scripts": {
"test": "cd test && mocha"
},
"author": "Hage Yaapa <captain@hacksparrow.com>",
"keywords": [
"imagemagick",
"image",
"graphics",
"process",
"convert",
"resize",
"crop",
"thumbnail",
"promise"
],
"repository": {
"type": "git",
"url": "https://git@github.com:hacksparrow/node-easyimage.git"
},
"dependencies": {
"colors": "^1.0.3",
"mkdirp": "^0.5.0",
"q": "^1.0.1"
},
"devDependencies": {
"chai": "^1.9.1",
"chai-as-promised": "^4.1.1",
"mocha": "^1.21.4",
"rimraf": "^2.2.8"
}
}