Last updated 3 years ago
Was this helpful?
Read a package.json file
$ npm install --save read-pkg
const readPkg = require('read-pkg'); readPkg().then(pkg => { console.log(pkg); //=> {name: 'read-pkg', ...} }); readPkg(__dirname).then(pkg => { console.log(pkg); //=> {name: 'read-pkg', ...} }); readPkg(path.join('unicorn', 'package.json')).then(pkg => { console.log(pkg); //=> {name: 'read-pkg', ...} });
Returns a Promise for the parsed JSON.
Promise
Returns the parsed JSON.
Type: string Default: .
string
.
Path to a package.json file or its directory.
package.json
normalize
Type: boolean Default: true
boolean
true
the package data.
- Read the closest package.json file
- Write a package.json file
- Read and parse a JSON file
MIT ©