jack e1a2621c78 update 2 years ago
..
index.js e1a2621c78 update 2 years ago
license e1a2621c78 update 2 years ago
package.json e1a2621c78 update 2 years ago
readme.md e1a2621c78 update 2 years ago

readme.md

pkg-up Build Status

Find the closest package.json file

Install

$ npm install --save pkg-up

Usage

/
└── Users
    └── sindresorhus
        └── foo
            ├── package.json
            └── bar
                ├── baz
                └── example.js
// example.js
var pkgUp = require('pkg-up');

pkgUp().then(function (filepath) {
	console.log(filepath);
	//=> '/Users/sindresorhus/foo/package.json'
});

API

pkgUp([cwd])

Returns a promise that resolves to a filepath or null.

pkgUp.sync([cwd])

Returns a filepath or null.

cwd

Type: string
Default: '.'

Directory to start from.

Related

  • read-pkg-up - Read the closest package.json file
  • pkg-dir - Find the root directory of a npm package
  • find-up - Find a file by walking up parent directories

License

MIT © Sindre Sorhus