GT2/Ejectable/node_modules/pkg-up
Ren Juan 06c1a5835d set clean start from expo 4.10 2021-08-16 00:14:59 +00:00
..
node_modules set clean start from expo 4.10 2021-08-16 00:14:59 +00:00
index.js set clean start from expo 4.10 2021-08-16 00:14:59 +00:00
license set clean start from expo 4.10 2021-08-16 00:14:59 +00:00
package.json set clean start from expo 4.10 2021-08-16 00:14:59 +00:00
readme.md set clean start from expo 4.10 2021-08-16 00:14:59 +00:00

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
const pkgUp = require('pkg-up');

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

API

pkgUp([cwd])

Returns a Promise for either the filepath or null if it could be found.

pkgUp.sync([cwd])

Returns the filepath or null.

cwd

Type: string Default: process.cwd()

Directory to start from.

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

License

MIT © Sindre Sorhus