XuelesszzZ 94af2b8e7b 6-30-5 | 1 år sedan | |
---|---|---|
.. | ||
node_modules | 1 år sedan | |
index.js | 1 år sedan | |
license | 1 år sedan | |
package.json | 1 år sedan | |
readme.md | 1 år sedan |
Read the closest package.json file
$ npm install read-pkg-up
const readPkgUp = require('read-pkg-up');
(async () => {
console.log(await readPkgUp());
/*
{
pkg: {
name: 'awesome-package',
version: '1.0.0',
…
},
path: '/Users/sindresorhus/dev/awesome-package/package.json'
}
*/
})();
Returns a Promise
for the result object.
Returns the result object.
Type: Object
Type: string
Default: process.cwd()
Directory to start looking for a package.json file.
Type: boolean
Default: true
Normalize the package data.
MIT © Sindre Sorhus