update dependencies

This commit is contained in:
Paul Rodwell 2018-12-18 20:28:25 +00:00
parent 9e3d7d3646
commit e5aa251971
3 changed files with 1431 additions and 551 deletions

View File

@ -3,7 +3,6 @@ module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-contrib-watch'); grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-git-authors'); grunt.loadNpmTasks('grunt-git-authors');
grunt.loadNpmTasks('grunt-retire'); grunt.loadNpmTasks('grunt-retire');
grunt.loadNpmTasks('grunt-nsp');
grunt.initConfig({ grunt.initConfig({
@ -30,14 +29,11 @@ module.exports = function (grunt) {
retire: { retire: {
node: ['.'], node: ['.'],
options: {packageOnly: true} options: {packageOnly: true}
},
nsp: {
package: grunt.file.readJSON('package.json')
} }
}); });
grunt.registerTask('check', ['nsp', 'retire']); grunt.registerTask('check', ['retire']);
grunt.registerTask('build', ['browserify']); grunt.registerTask('build', ['browserify']);
grunt.registerTask('default', ['build']); grunt.registerTask('default', ['build']);

1961
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -5,16 +5,16 @@
"author": "Paul Rodwell <paul.rodwell@btinternet.com> (http://rodwell.me)", "author": "Paul Rodwell <paul.rodwell@btinternet.com> (http://rodwell.me)",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"coffeescript": "^1.12.7", "coffeescript": "^2.3.2",
"es6-promise": "^4.1.1", "es6-promise": "^4.2.5",
"lodash": "^4.17.4", "lodash": "^4.17.11",
"passport": "0.3.2", "passport": "^0.3.2",
"passport-github": "^1.1.0", "passport-github": "^1.1.0",
"passport-google-oauth20": "^1.0.0", "passport-google-oauth20": "^1.0.0",
"passport-twitter": "^1.0.4", "passport-twitter": "^1.0.4",
"persona-pass": "^0.2.1", "persona-pass": "^0.2.1",
"qs": "^6.5.1", "qs": "^6.6.0",
"whatwg-fetch": "^2.0.3" "whatwg-fetch": "^3.0.0"
}, },
"devDependencies": { "devDependencies": {
"coffeeify": "^3.0.1", "coffeeify": "^3.0.1",
@ -22,7 +22,6 @@
"grunt-browserify": "^5.2.0", "grunt-browserify": "^5.2.0",
"grunt-contrib-watch": "^1.0.0", "grunt-contrib-watch": "^1.0.0",
"grunt-git-authors": "^3.2.0", "grunt-git-authors": "^3.2.0",
"grunt-nsp": "*",
"grunt-retire": "^1.0.7" "grunt-retire": "^1.0.7"
} }
} }