summaryrefslogtreecommitdiff
path: root/deps/npm/lib/install/action/refresh-package-json.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/lib/install/action/refresh-package-json.js')
-rw-r--r--deps/npm/lib/install/action/refresh-package-json.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/npm/lib/install/action/refresh-package-json.js b/deps/npm/lib/install/action/refresh-package-json.js
index 42f8012100..32e6444444 100644
--- a/deps/npm/lib/install/action/refresh-package-json.js
+++ b/deps/npm/lib/install/action/refresh-package-json.js
@@ -14,7 +14,7 @@ module.exports = function (staging, pkg, log) {
return readJson(path.join(pkg.path, 'package.json'), false).then((metadata) => {
Object.keys(pkg.package).forEach(function (key) {
- if (key !== 'dependencies' && !isEmpty(pkg.package[key])) {
+ if (key !== 'version' && key !== 'dependencies' && !isEmpty(pkg.package[key])) {
metadata[key] = pkg.package[key]
}
})