UNPKG

eslint-config-lemon

Version:

<div align="center"> <br> <img width="400" src="logo.svg"> <br> <br> </div>

13 lines (11 loc) 298 B
const BaseCommand = require('../base-command.js') class Root extends BaseCommand { static description = 'Display npm root' static name = 'root' static params = ['global'] static ignoreImplicitWorkspace = true async exec () { this.npm.output(this.npm.dir) } } module.exports = Root