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

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/npm.js')
-rw-r--r--lib/npm.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/npm.js b/lib/npm.js
index fe2ce5c6b..a922aafaf 100644
--- a/lib/npm.js
+++ b/lib/npm.js
@@ -311,9 +311,12 @@ class Npm extends EventEmitter {
get flatOptions () {
const { flat } = this.config
- // the Arborist constructor is used almost everywhere we call pacote, it's easiest
- // to attach it to flatOptions so it goes everywhere without having to touch every call
+ // the Arborist constructor is used almost everywhere we call pacote, it's
+ // easiest to attach it to flatOptions so it goes everywhere without having
+ // to touch every call
flat.Arborist = Arborist
+ flat.nodeVersion = process.version
+ flat.npmVersion = pkg.version
if (this.command) {
flat.npmCommand = this.command
}