Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated deps #87

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"extends": "standard",
"env": {
"node": true,
"mocha": true
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
Fork of https://github.com/rhalff/dot-object to update

[![Build Status](https://travis-ci.org/rhalff/dot-object.png)](https://travis-ci.org/rhalff/dot-object)

Dot-Object
Expand Down
2 changes: 1 addition & 1 deletion dist/dot-object.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
'use strict'

const gulp = require('gulp')
const gutil = require('gulp-util')
const mocha = require('gulp-mocha')
const hf = require('gulp-headerfooter')
const rename = require('gulp-rename')
const uglify = require('gulp-uglify')
const beautify = require('gulp-beautify')
const eslint = require('gulp-eslint')
import gulp from 'gulp'
import log from 'fancy-log'
import mocha from 'gulp-mocha'
import hf from 'gulp-headerfooter'
import rename from 'gulp-rename'
import uglify from 'gulp-uglify'
import beautify from 'gulp-beautify'
import eslint from 'gulp-eslint'

const DEST = 'dist/'

Expand All @@ -24,7 +24,7 @@ gulp.task('lint', function (done) {
gulp.task('mocha', function (done) {
gulp.src(['test/**/*.js'])
.pipe(mocha())
.on('error', gutil.log)
.on('error', log)
done()
})

Expand Down
27 changes: 16 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@
"name": "Rob Halff",
"email": "rob.halff@gmail.com"
},
"contributors": [
{
"name": "Greg Elliot",
"email": "junk@thinkof.net",
"url": "https://gselliot.com"
}
],
"repository": {
"type": "git",
"url": "git://github.com/rhalff/dot-object.git"
Expand All @@ -30,21 +37,18 @@
]
},
"devDependencies": {
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint": "^9.16.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"gulp": "^4.0.2",
"eslint-plugin-promise": "^7.2.1",
"gulp": "^5.0.0",
"gulp-beautify": "^3.0.0",
"gulp-eslint": "^6.0.0",
"gulp-headerfooter": "^1.0.3",
"gulp-mocha": "^7.0.2",
"gulp-mocha": "^10.0.1",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"gulp-util": "^3.0.8",
"mocha": "8.x.x",
"mocha": "11.x.x",
"should": "13.x.x",
"underscore.string": "latest"
},
Expand All @@ -57,8 +61,9 @@
"dot"
],
"dependencies": {
"commander": "^6.1.0",
"glob": "^7.1.6"
"commander": "^12.1.0",
"fancy-log": "^2.0.0",
"glob": "^11.0.0"
},
"packageManager": "yarn@4.1.1"
}