From 7621e1085d6389b214f244ac3e3ddb78c381d1c8 Mon Sep 17 00:00:00 2001 From: Bjoern Kimminich Date: Fri, 8 Jan 2016 10:46:28 +0100 Subject: added retire.js to build process -allows security vulnerability check in used npm-dependencies and own scripts -execute with ```grunt retire``` --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'package.json') diff --git a/package.json b/package.json index f7035aa..b75bb90 100644 --- a/package.json +++ b/package.json @@ -36,10 +36,11 @@ "grunt-sass": "~1.1.0-beta", "grunt-contrib-connect": "~0.11.2", "grunt-autoprefixer": "~3.0.3", + "grunt-retire": "~0.3.10", "grunt-zip": "~0.17.1", "grunt": "~0.4.5", "node-sass": "~3.3.3" }, - + "license": "MIT" } -- cgit v1.2.3 From 541bcf212314e368bffa815401497bb94d2acf0e Mon Sep 17 00:00:00 2001 From: Hakim El Hattab Date: Tue, 28 Jun 2016 15:48:09 +0200 Subject: update dependencies based on retire.js info #1473 --- package.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'package.json') diff --git a/package.json b/package.json index fdd2a68..7f6f334 100644 --- a/package.json +++ b/package.json @@ -22,10 +22,10 @@ "node": "~4.1.1" }, "dependencies": { - "express": "~4.13.3", - "grunt-cli": "~0.1.13", + "express": "~4.14.0", + "grunt-cli": "~1.2.0", "mustache": "~2.2.1", - "socket.io": "~1.3.7" + "socket.io": "^1.4.8" }, "devDependencies": { "grunt": "~0.4.5", @@ -33,13 +33,13 @@ "grunt-contrib-connect": "~0.11.2", "grunt-contrib-cssmin": "~0.14.0", "grunt-contrib-jshint": "~0.11.3", - "grunt-contrib-qunit": "~0.7.0", + "grunt-contrib-qunit": "~1.2.0", "grunt-contrib-uglify": "~0.9.2", - "grunt-contrib-watch": "~0.6.1", - "grunt-sass": "~1.1.0-beta", + "grunt-contrib-watch": "~1.0.0", + "grunt-sass": "~1.2.0", "grunt-retire": "~0.3.10", "grunt-zip": "~0.17.1", - "node-sass": "~3.3.3" + "node-sass": "~3.7.0" }, "license": "MIT" } -- cgit v1.2.3 From 2cf00254a1a696111b0f4a48dda1cac399447193 Mon Sep 17 00:00:00 2001 From: CH Date: Wed, 5 Oct 2016 11:45:37 +0200 Subject: renamed grunt 'base' option to 'root' (#1660) * Allow slides to be served away from revealjs server location The previous 'base' option conflicts with Grunt's 'base' option. Changing it to 'root' avoids this. Further, updating to a newer Grunt allows multiple parameters to be used. therefore `grunt serve --root="." --root="pathtomyslides"` allows you to keep your slide content separate from JS/CSS and such * Live reload for relocated base * Updated packages to match origin/dev * Updated packages to match origin/dev * Ensure root is an array --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'package.json') diff --git a/package.json b/package.json index 7f6f334..c96e4fd 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "socket.io": "^1.4.8" }, "devDependencies": { - "grunt": "~0.4.5", + "grunt": "~1.0.1", "grunt-autoprefixer": "~3.0.3", "grunt-contrib-connect": "~0.11.2", "grunt-contrib-cssmin": "~0.14.0", -- cgit v1.2.3 From 03ac4a2e8ebc3b166286214bfb3bd69eb0561e34 Mon Sep 17 00:00:00 2001 From: Benjamin Tan Date: Tue, 6 Dec 2016 18:12:41 +0800 Subject: Reduce required Node.js version to 4.0.0. The development workflow can be used with Node 4+, not just Node 6. We should avoid showing warnings and errors when users are installing this package via npm/yarn. Ref. #1729, #1743. Closes #1725. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'package.json') diff --git a/package.json b/package.json index f0dcedf..7a9f185 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "url": "git://github.com/hakimel/reveal.js.git" }, "engines": { - "node": "~6.9.1" + "node": ">=4.0.0" }, "dependencies": { "express": "~4.14.0", -- cgit v1.2.3