1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "name": "findup-sync",
- "description": "Find the first file matching a given pattern in the current directory or the nearest ancestor directory.",
- "version": "0.1.3",
- "homepage": "https://github.com/cowboy/node-findup-sync",
- "author": {
- "name": "\"Cowboy\" Ben Alman",
- "url": "http://benalman.com/"
- },
- "repository": {
- "type": "git",
- "url": "git://github.com/cowboy/node-findup-sync.git"
- },
- "bugs": {
- "url": "https://github.com/cowboy/node-findup-sync/issues"
- },
- "licenses": [
- {
- "type": "MIT",
- "url": "https://github.com/cowboy/node-findup-sync/blob/master/LICENSE-MIT"
- }
- ],
- "main": "lib/findup-sync",
- "engines": {
- "node": ">= 0.6.0"
- },
- "scripts": {
- "test": "grunt nodeunit"
- },
- "dependencies": {
- "glob": "~3.2.9",
- "lodash": "~2.4.1"
- },
- "devDependencies": {
- "grunt": "~0.4.4",
- "grunt-contrib-jshint": "~0.9.2",
- "grunt-contrib-nodeunit": "~0.3.3"
- },
- "keywords": [
- "find",
- "glob",
- "file"
- ]
- }
|