This repository has been archived by the owner on Jan 31, 2021. It is now read-only.
forked from Jonty/image-resizer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.63 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
{
"name": "irccloud-image-resizer",
"version": "1.8.0",
"description": "On-the-fly image resizing and optimization using node and graphicsmagick. Heroku ready!",
"main": "index.js",
"scripts": {
"test": "snyk test && gulp test",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"keywords": [
"image",
"resize",
"node",
"graphicsmagick",
"heroku",
"optimization"
],
"author": "James Nicol <[email protected]> (https://github.com/jimmynicol)",
"license": {
"type": "MIT",
"url": "https://github.com/jimmynicol/image-resizer/raw/master/LICENSE"
},
"repository": {
"type": "git",
"url": "https://github.com/irccloud/image-resizer.git"
},
"private": true,
"bin": {
"image-resizer": "./bin/image_resizer.js"
},
"dependencies": {
"aws-sdk": "^2.506.0",
"chalk": "^2.4.2",
"commander": "^2.20.0",
"concat-stream": "^2.0.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"glob": "^7.1.4",
"gm": "^1.23.1",
"imagemin": "^7.0.0",
"lodash": "^4.17.15",
"map-stream": "^0.0.7",
"mkdirp": "^0.5.1",
"morgan": "^1.9.1",
"request": "^2.88.0",
"snyk": "^1.215.0",
"twit": "^2.2.11"
},
"devDependencies": {
"chai": "^4.2.0",
"dotenv": "^8.0.0",
"ejs": "^2.6.2",
"gulp": "^4.0.2",
"gulp-bump": "^3.1.3",
"gulp-jshint": "~2.1.0",
"gulp-mocha": "^6.0.0",
"gulp-nodemon": "^2.4.2",
"gulp-util": "~3.0.8",
"jshint": "^2.10.2",
"jshint-stylish": "~2.2.1",
"sandboxed-module": "^2.0.3",
"sinon": "^7.4.1",
"sinon-chai": "^3.3.0"
},
"snyk": true
}