forked from gulpjs/glob-watcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(dependencies): updated dependencies
- Loading branch information
Showing
6 changed files
with
2,304 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
{ | ||
"extends": "gulp" | ||
"extends": "gulp", | ||
"rules": { | ||
"max-statements": 0 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{ | ||
"name": "glob-watcher", | ||
"version": "5.0.5", | ||
"name": "@fomantic/glob-watcher", | ||
"version": "5.0.6", | ||
"description": "Watch globs and execute a function upon change, with intelligent defaults for debouncing and queueing.", | ||
"author": "Gulp Team <[email protected]> (http://gulpjs.com/)", | ||
"author": "Gulp Team <[email protected]> (https://gulpjs.com/)", | ||
"contributors": [], | ||
"repository": "gulpjs/glob-watcher", | ||
"repository": "https://github.com/fomantic/glob-watcher", | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">= 0.10" | ||
"node": ">=12" | ||
}, | ||
"main": "index.js", | ||
"files": [ | ||
|
@@ -17,29 +17,26 @@ | |
"lint": "eslint .", | ||
"pretest": "npm run lint", | ||
"test": "mocha --async-only", | ||
"cover": "istanbul cover _mocha --report lcovonly", | ||
"coveralls": "npm run cover && istanbul-coveralls" | ||
"coverage": "nyc mocha --async-only" | ||
}, | ||
"dependencies": { | ||
"anymatch": "^2.0.0", | ||
"async-done": "^1.2.0", | ||
"chokidar": "^2.0.0", | ||
"anymatch": "^3.1.2", | ||
"async-done": "^2.0.0", | ||
"chokidar": "^3.5.3", | ||
"is-negated-glob": "^1.0.0", | ||
"just-debounce": "^1.0.0", | ||
"just-debounce": "^1.1.0", | ||
"normalize-path": "^3.0.0", | ||
"object.defaults": "^1.1.0" | ||
}, | ||
"devDependencies": { | ||
"coveralls": "^2.11.2", | ||
"eslint": "^2.13.1", | ||
"eslint-config-gulp": "^3.0.1", | ||
"expect": "^1.16.0", | ||
"istanbul": "^0.4.0", | ||
"istanbul-coveralls": "^1.0.1", | ||
"mocha": "^2.0.0", | ||
"mocha-lcov-reporter": "^1.2.0", | ||
"rimraf": "^2.6.1", | ||
"through2": "^2.0.1" | ||
"eslint": "^8.26.0", | ||
"eslint-config-gulp": "^5.0.1", | ||
"expect": "^27.5.1", | ||
"nyc": "^15.1.0", | ||
"mocha": "^9.2.2", | ||
"rimraf": "^3.0.2", | ||
"sinon": "^14.0.1", | ||
"through2": "^4.0.2" | ||
}, | ||
"keywords": [ | ||
"watch", | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.