root 3bf41bf355 update | пре 1 година | |
---|---|---|
.. | ||
node_modules | пре 1 година | |
index.d.ts | пре 1 година | |
index.js | пре 1 година | |
license | пре 1 година | |
package.json | пре 1 година | |
readme.md | пре 1 година |
Read a package.json file
$ npm install read-pkg
const readPkg = require('read-pkg');
(async () => {
console.log(await readPkg());
//=> {name: 'read-pkg', …}
console.log(await readPkg({cwd: 'some-other-directory'}));
//=> {name: 'unicorn', …}
})();
Returns a Promise<object>
with the parsed JSON.
Returns the parsed JSON.
Type: object
Type: string
Default: process.cwd()
Current working directory.
Type: boolean
Default: true
Normalize the package data.
package.json
file