uuid-apikey
Advanced tools
Comparing version 1.3.5 to 1.4.0
@@ -34,3 +34,3 @@ const gulp = require('gulp'); | ||
gulp.task('test', ['lint'], () => { | ||
gulp.task('test', () => { | ||
return gulp | ||
@@ -65,2 +65,2 @@ .src('test/index.js', { read: false }) | ||
gulp.task('default', ['test']); | ||
gulp.task('default', gulp.series('lint', 'test')); |
{ | ||
"name": "uuid-apikey", | ||
"version": "1.3.5", | ||
"version": "1.4.0", | ||
"description": "A Base32-Crockford encoded API Key generator, validator, and converter to turn UUIDs into human readable API Keys", | ||
@@ -33,20 +33,19 @@ "main": "index.js", | ||
"devDependencies": { | ||
"ast-types": "^0.11.3", | ||
"chai": "^4.1.2", | ||
"codacy-coverage": "^2.1.1", | ||
"eslint": "^4.19.1", | ||
"gulp": "^3.9.1", | ||
"gulp": "^4.0.0", | ||
"gulp-eslint": "^4.0.2", | ||
"gulp-mocha": "^5.0.0", | ||
"gulp-prettier": "^1.1.0", | ||
"mocha": "^5.1.1", | ||
"nyc": "^11.7.1", | ||
"prettier": "^1.12.1" | ||
"mocha": "^5.2.0", | ||
"nyc": "^11.9.0", | ||
"prettier": "^1.14.2" | ||
}, | ||
"dependencies": { | ||
"colors": "^1.2.4", | ||
"commander": "^2.15.1", | ||
"colors": "^1.3.1", | ||
"commander": "^2.17.1", | ||
"encode32": "^1.1.0", | ||
"uuid": "^3.2.1" | ||
"uuid": "^3.3.2" | ||
} | ||
} |
@@ -25,3 +25,3 @@ # uuid-apikey | ||
***NOTE***: This package makes use of ES6 and ES7 functionality. If you are using a version of node `< v8.0`, then you will need to use babel or a polyfill for compatibility. | ||
***NOTE***: This package makes use of ES6 and ES7 functionality. If you are using a version of node prior to version 8 then you will probably need to use a polyfill (e.g. babel) for compatibility. | ||
@@ -28,0 +28,0 @@ ## Installation |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
25311
10
Updatedcolors@^1.3.1
Updatedcommander@^2.17.1
Updateduuid@^3.3.2