| Path : /proc/self/root/lib/node_modules/npm/lib/commands/ |
| Current File : //proc/self/root/lib/node_modules/npm/lib/commands/stop.js |
const LifecycleCmd = require('../lifecycle-cmd.js')
// This ends up calling run-script(['stop', ...args])
class Stop extends LifecycleCmd {
static description = 'Stop a package'
static name = 'stop'
static params = [
'ignore-scripts',
'script-shell',
]
static ignoreImplicitWorkspace = false
}
module.exports = Stop