Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ll.js « lib « npm « deps - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ada260e32936a41c40cc6a9cb349f6b3638cef1d (plain)
1
2
3
4
5
6
const { usage, completion } = require('./ls.js')
const npm = require('./npm.js')
module.exports = Object.assign((args, cb) => {
  npm.config.set('long', true)
  return npm.commands.ls(args, cb)
}, { usage, completion })