-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.48 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
62
63
64
{
"author": {
"name": "Irakli Nadareishvili",
"url": "http://freshblurbs.com"
},
"name": "connect-thumbs",
"description": "Image thumbnailing middleware for Connect.",
"keywords": [
"thumbnail",
"imagemagick",
"thumb",
"photos",
"crop",
"smartcrop",
"content-aware",
"resize",
"connect",
"middleware",
"express"
],
"version": "0.4.0",
"repository": {
"type": "git",
"url": "[email protected]:inadarei/connect-thumbs.git"
},
"main": "./index.js",
"license": "MIT",
"dependencies": {
"async": "^2.6.0",
"gm": "^1.20.0",
"lockfile": "^1.0.1",
"lodash": "^4.17.4",
"mkdirp": "0.x",
"moment": "2.20.1",
"pause": "0.x",
"request": "2.x",
"send": "~0.16.1"
},
"devDependencies": {
"express": "^4.13.3",
"connect": "*",
"after": "^0.8.1",
"istanbul": "^0.3.2",
"mocha": "^2.1.0",
"chai": "^1.9.1",
"should": "^4.4.4",
"jshint": "^2.5.x"
},
"scripts": {
"example": "node example/first.js",
"prepublish": "npm prune",
"test": "mocha --reporter spec --bail --check-leaks test/",
"pretest": "jshint lib",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
},
"optionalDependencies": {
"canvas": "^1.2.10",
"smartcrop": "0.0.1"
},
"engines": {
"node": "*"
}
}