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
36 lines (36 loc) · 742 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 742 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
{
"name": "easyimage",
"version": "1.0.5",
"description": "A promise-based, user-friendly module for processing images in Node.js",
"main": "easyimage.js",
"scripts": {
"test": "./node_modules/.bin/mocha test.js"
},
"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": {
"q": "^1.0.1"
},
"devDependencies": {
"chai": "^1.9.1",
"chai-as-promised": "^4.1.1",
"mocha": "^1.21.4"
},
"scripts": {
"test": "mocha"
}
}