Skip to content

Commit 0eeb718

Browse files
authored
Merge pull request #4 from chrisben/v2
Updated for 2.0.0
2 parents 6d3bae2 + aeadf5c commit 0eeb718

File tree

4 files changed

+31
-25
lines changed

4 files changed

+31
-25
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN \
1616
curl \
1717
build-essential
1818

19-
RUN curl --silent --location https://deb.nodesource.com/setup_0.12 | bash -
19+
RUN curl --silent --location https://deb.nodesource.com/setup_8.x | bash -
2020

2121
RUN \
2222
apt-get update -q && \

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2015, Christophe BENOIT
1+
Copyright (c) 2018, Christophe BENOIT
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without

package-lock.json

+24-18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "image-thumb",
3-
"version": "1.0.0",
3+
"version": "2.0.0",
44
"description": "Image thumbnail generator server",
55
"main": "index.js",
66
"repository": {
@@ -9,22 +9,22 @@
99
},
1010
"dependencies": {
1111
"express": "^4.16.3",
12-
"jssha": "^2.0.1",
12+
"jssha": "^2.3.1",
1313
"request": "^2.88.0",
1414
"sharp": "^0.21.0"
1515
},
1616
"devDependencies": {
17-
"del": "^2.0.2",
17+
"del": "^3.0.0",
1818
"gulp": "^4.0.0",
1919
"gulp-jshint": "^2.1.0",
2020
"gulp-util": "^3.0.7",
21-
"jshint": "^2.8.0",
21+
"jshint": "^2.9.6",
2222
"mocha": "^5.2.0"
2323
},
2424
"scripts": {
2525
"start": "node index.js",
2626
"lint": "jshint --exclude ./node_modules .",
27-
"test": "mocha"
27+
"test": "npm run lint && mocha"
2828
},
2929
"author": "Christophe Benoit <christophe.benoit@gmail.com>",
3030
"license": "MIT"

0 commit comments

Comments
 (0)