UnknownSec Bypass
403
:
/
home
/
ubuntu
/
.nvm
/
versions
/
node
/
v16.13.1
/
lib
/
node_modules
/
npm
/
lib
/
utils
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
lifecycle-cmd.js
// The implementation of commands that are just "run a script" // restart, start, stop, test const BaseCommand = require('../base-command.js') class LifecycleCmd extends BaseCommand { static get usage () { return ['[-- <args>]'] } exec (args, cb) { this.npm.commands['run-script']([this.constructor.name, ...args], cb) } execWorkspaces (args, filters, cb) { this.npm.commands['run-script']([this.constructor.name, ...args], cb) } } module.exports = LifecycleCmd
Copyright © 2025 - UnknownSec