-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
61 lines (61 loc) · 1.11 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "imaginary",
"description": "Minimalist CLI and programmatic stream based interface for imaginary",
"version": "0.1.16",
"license": "MIT",
"repository": "h2non/node-imaginary",
"author": "Tomas Aparicio",
"main": "./lib",
"keywords": [
"image",
"convesion",
"processing",
"resize",
"vips",
"imagemagick",
"resize",
"convert",
"resolution",
"images",
"crop",
"rotate",
"flip",
"flip",
"libvips",
"convert",
"images",
"enlarge",
"crop",
"watermark"
],
"bin": {
"imaginary": "./bin/imaginary"
},
"engines": {
"node": ">= 6"
},
"scripts": {
"lint": "standard",
"prepublish": "make test && make compile",
"test": "make test"
},
"dependencies": {
"commander": "^2.6.0",
"object-assign": "^4.1.0",
"request": "^2.65.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"chai": "^1.9.1",
"mocha": "^1.21.3",
"nock": "^2.17.0",
"standard": "^8.5.0"
},
"standard": {
"globals": [
"test",
"suite"
]
}
}