push all website files

This commit is contained in:
Jacob Levine
2019-01-06 13:14:45 -06:00
parent d7301e26c3
commit d2d5d4c04e
15662 changed files with 2166516 additions and 0 deletions

15
website/node_modules/npm/lib/utils/package-id.js generated vendored Normal file
View File

@@ -0,0 +1,15 @@
'use strict'
var moduleName = require('./module-name.js')
module.exports = function (tree) {
var pkg = tree.package || tree
// FIXME: Excluding the '@' here is cleaning up after the mess that
// read-package-json makes. =(
if (pkg._id && pkg._id !== '@') return pkg._id
var name = moduleName(tree)
if (pkg.version) {
return name + '@' + pkg.version
} else {
return name
}
}