Read and update package.json files.
npm install package-json-io
var pkg = require('package-json-io')
// read and parse the package.json file in current directory
pkg.read(function (err, data) {
data.license = 'MIT'
// update the package.json file in the current directory with a new license
pkg.update(data, function (err) {
if (err) throw err
})
})
read([file], callback)Will read the package.json file in the current working directory
unless the optinal file argument specifies another file.
Will call the callback with an optinal error argument and the data
from the parsed package.json file.
update([file], data, callback)Will replace the package.json file in the current working directory
(unless the optinal file argument specifies another file) with the
provided data object.
Will call the callback when done with an optional error argument.
MIT