D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
thread-self
/
root
/
lib
/
node_modules
/
npm
/
lib
/
utils
/
Filename :
read-local-package.js
back
Copy
exports = module.exports = readLocalPkg var npm = require('../npm.js') var readJson = require('read-package-json') function readLocalPkg (cb) { if (npm.config.get('global')) return cb() var path = require('path') readJson(path.resolve(npm.prefix, 'package.json'), function (er, d) { return cb(er, d && d.name) }) }