diff options
Diffstat (limited to 'node_modules/findup-sync')
-rw-r--r-- | node_modules/findup-sync/README.md | 2 | ||||
-rw-r--r-- | node_modules/findup-sync/package.json | 36 |
2 files changed, 17 insertions, 21 deletions
diff --git a/node_modules/findup-sync/README.md b/node_modules/findup-sync/README.md index c8c4a0b47..58ce20ee5 100644 --- a/node_modules/findup-sync/README.md +++ b/node_modules/findup-sync/README.md @@ -43,6 +43,8 @@ For bugs and feature requests, [please create an issue](https://github.com/cowbo ## Release History +2017-08-07 - v2.0.0 - Drop node 0.8 support, Bump all dependencies (including some Majors) +2017-04-18 - v1.0.0 - Major bump from stable 0.4.3 2015-01-30 - v0.4.0 - Refactored, not also uses [micromatch][] instead of minimatch. 2015-09-14 - v0.3.0 - updated glob to ~5.0. 2014-12-17 - v0.2.1 - Updated to glob 4.3. diff --git a/node_modules/findup-sync/package.json b/node_modules/findup-sync/package.json index 7068dd0eb..435aa3af6 100644 --- a/node_modules/findup-sync/package.json +++ b/node_modules/findup-sync/package.json @@ -1,40 +1,34 @@ { "name": "findup-sync", "description": "Find the first file matching a given pattern in the current directory or the nearest ancestor directory.", - "version": "0.4.3", - "homepage": "https://github.com/cowboy/node-findup-sync", + "version": "2.0.0", "author": "\"Cowboy\" Ben Alman (http://benalman.com)", - "repository": "cowboy/node-findup-sync", - "bugs": { - "url": "https://github.com/cowboy/node-findup-sync/issues" - }, + "repository": "js-cli/node-findup-sync", "license": "MIT", "files": [ "index.js" ], "main": "index.js", "engines": { - "node": ">= 0.8.0" + "node": ">= 0.10" }, "scripts": { - "test": "grunt && mocha" + "lint": "jshint index.js test/support/index.js test/test.js", + "test": "npm run lint && mocha" }, "dependencies": { - "detect-file": "^0.1.0", - "is-glob": "^2.0.1", - "micromatch": "^2.3.7", - "resolve-dir": "^0.1.0" + "detect-file": "^1.0.0", + "is-glob": "^3.1.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" }, "devDependencies": { - "fs-exists-sync": "^0.1.0", - "grunt": "^1.0.1", - "grunt-contrib-jshint": "^0.12.0", - "is-absolute": "^0.2.3", - "minimist": "^1.2.0", - "mocha": "^2.4.5", - "normalize-path": "^2.0.1", - "os-homedir": "^1.0.1", - "resolve": "^1.1.7" + "homedir-polyfill": "^1.0.1", + "is-absolute": "^1.0.0", + "jshint": "^2.9.5", + "mocha": "^3.5.0", + "normalize-path": "^2.1.1", + "resolve": "^1.4.0" }, "keywords": [ "file", |