Update to gulp 4
This commit is contained in:
parent
b969802d87
commit
fad368ecb2
File diff suppressed because it is too large
Load Diff
30
package.json
30
package.json
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "responsive-html-email-signature",
|
"name": "responsive-html-email-signature",
|
||||||
"version": "4.1.1",
|
"version": "5.0.0",
|
||||||
"description": "Responsive template for emails & email signatures.",
|
"description": "Responsive template for emails & email signatures.",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
@ -16,22 +16,22 @@
|
||||||
"inline-styles",
|
"inline-styles",
|
||||||
"watches-html"
|
"watches-html"
|
||||||
],
|
],
|
||||||
"author": "Dan Mindru <mindrudan@gmail.com> (http://mindrudan.com/)",
|
"author": "Dan Mindru <mindrudan@gmail.com> (https://mindrudan.com/)",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/danmindru/responsive-html-email-signature/issues"
|
"url": "https://github.com/danmindru/responsive-html-email-signature/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/danmindru/responsive-html-email-signature#readme",
|
"homepage": "https://github.com/danmindru/responsive-html-email-signature#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"autoprefixer": "^9.5.1",
|
"autoprefixer": "^9.6.1",
|
||||||
"del": "^4.1.0",
|
"del": "^5.1.0",
|
||||||
"graceful-fs": "^4.1.15",
|
"graceful-fs": "^4.2.2",
|
||||||
"gulp": "~3.9.1",
|
"gulp": "^4.0.2",
|
||||||
"gulp-autoprefixer": "^6.1.0",
|
"gulp-autoprefixer": "^7.0.0",
|
||||||
"gulp-david": "^1.0.1",
|
"gulp-david": "^1.0.1",
|
||||||
"gulp-inline-css": "^3.3.1",
|
"gulp-inline-css": "^3.3.2",
|
||||||
"gulp-inline-images-no-http": "^1.3.0",
|
"gulp-inline-images-no-http": "^1.3.0",
|
||||||
"gulp-jsonlint": "^1.3.0",
|
"gulp-jsonlint": "^1.3.1",
|
||||||
"gulp-less": "^4.0.1",
|
"gulp-less": "^4.0.1",
|
||||||
"gulp-minify-html": "~1.0.5",
|
"gulp-minify-html": "~1.0.5",
|
||||||
"gulp-minify-inline": "^1.1.0",
|
"gulp-minify-inline": "^1.1.0",
|
||||||
|
|
@ -41,13 +41,19 @@
|
||||||
"gulp-rename": "^1.4.0",
|
"gulp-rename": "^1.4.0",
|
||||||
"gulp-sass": "^4.0.2",
|
"gulp-sass": "^4.0.2",
|
||||||
"klaw": "^3.0.0",
|
"klaw": "^3.0.0",
|
||||||
|
"node-sass": "^4.12.0",
|
||||||
"q": "^1.5.1"
|
"q": "^1.5.1"
|
||||||
},
|
},
|
||||||
"resolutions": {
|
"resolutions": {
|
||||||
"graceful-fs": "^4.1.15"
|
"graceful-fs": "^4.1.15"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"create": "node_modules/.bin/gulp",
|
"create": "gulp",
|
||||||
"deploy": "cp -r dist demo && git push origin `git subtree split --prefix demo develop`:gh-pages --force"
|
"deploy": "cp -r dist demo && git push origin `git subtree split --prefix demo develop`:gh-pages --force",
|
||||||
}
|
"test": "node ./node_modules/.bin/ava"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"ava": "^2.3.0"
|
||||||
|
},
|
||||||
|
"browserslist": ["last 5 versions"]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue