-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 2.05 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
65
66
67
68
69
70
71
72
{
"author": {
"name": "Allan Bogh",
"email": "ajbogh@allanbogh.com",
"url": "http://allanbogh.com"
},
"name": "node-image-farmer",
"description": "Image thumbnailing middleware based on connect-thumb. Adds ability to retrieve files from the filesystem.",
"keywords": [
"thumbnail",
"imagemagick",
"thumb",
"photos",
"crop",
"smartcrop",
"content-aware",
"resize",
"connect",
"middleware",
"express"
],
"version": "1.2.7",
"contributors": [
{
"name": "Irakli Nadareishvili",
"url": "http://freshblurbs.com"
}
],
"repository": {
"type": "git",
"url": "git@github.com:ajbogh/node-image-farmer.git"
},
"main": "./index.js",
"license": "MIT",
"scripts": {
"app": "node app/app.js",
"prepublish": "npm prune",
"test": "mocha --reporter spec --bail --check-leaks -t 5000 test/",
"pretest": "jshint lib",
"test-cov": "nyc --reporter=lcov npm run test",
"test-travis": "nyc --reporter=lcovonly --reporter text npm run test",
"install-ubuntu-deps": "apt install -y graphicsmagick libcairo2-dev libjpeg-dev libgif-dev --fix-missing",
"install-mac-deps": "brew install graphicsmagick && ( xcode-select --install || echo 'xcode may have already been installed.' ) && brew install pkgconfig pixman libjpeg giflib cairo",
"install-redhat-deps": "yum install GraphicsMagick cairo cairo-devel libjpeg-devel cairomm-devel libjpeg-turbo-devel pango pango-devel pangomm pangomm-devel giflib-devel"
},
"dependencies": {
"axios": "^0.21.0",
"canvas": "^2.6.1",
"debug": "^2.6.9",
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"gm": "^1.23.1",
"image-size": "^0.9.3",
"lockfile": "^1.0.4",
"lodash": "^4.17.20",
"mime": "^1.6.0",
"minimist": "^1.2.5",
"moment": "^2.29.1",
"smartcrop": "^2.0.3"
},
"devDependencies": {
"chai": "^4.2.0",
"http-image-size": "^1.1.0",
"jshint": "^2.12.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"should": "^4.4.4"
},
"engines": {
"node": ">=12.4.0"
}
}