diff options
Diffstat (limited to 'deps/npm/lib/get.js')
-rw-r--r-- | deps/npm/lib/get.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/deps/npm/lib/get.js b/deps/npm/lib/get.js index a5d58accc8..8cfb259a81 100644 --- a/deps/npm/lib/get.js +++ b/deps/npm/lib/get.js @@ -2,6 +2,11 @@ const BaseCommand = require('./base-command.js') class Get extends BaseCommand { /* istanbul ignore next - see test/lib/load-all-commands.js */ + static get description () { + return 'Get a value from the npm configuration' + } + + /* istanbul ignore next - see test/lib/load-all-commands.js */ static get name () { return 'get' } |