X7ROOT File Manager
Current Path:
/opt/alt/alt-nodejs11/root/usr/lib/node_modules/npm/lib/install
opt
/
alt
/
alt-nodejs11
/
root
/
usr
/
lib
/
node_modules
/
npm
/
lib
/
install
/
ðŸ“
..
📄
access-error.js
(202 B)
ðŸ“
action
📄
actions.js
(5.51 KB)
📄
and-add-parent-to-errors.js
(324 B)
📄
and-finish-tracker.js
(360 B)
📄
and-ignore-errors.js
(204 B)
📄
audit.js
(8.24 KB)
📄
check-permissions.js
(1.85 KB)
📄
copy-tree.js
(770 B)
📄
decompose-actions.js
(2.18 KB)
📄
deps.js
(29.15 KB)
📄
diff-trees.js
(9.12 KB)
📄
exists.js
(775 B)
📄
flatten-tree.js
(1021 B)
📄
get-requested.js
(440 B)
📄
has-modern-meta.js
(702 B)
📄
inflate-bundled.js
(628 B)
📄
inflate-shrinkwrap.js
(8.04 KB)
📄
is-dev-dep.js
(175 B)
📄
is-extraneous.js
(618 B)
📄
is-fs-access-available.js
(763 B)
📄
is-only-dev.js
(1.21 KB)
📄
is-only-optional.js
(600 B)
📄
is-opt-dep.js
(185 B)
📄
is-prod-dep.js
(172 B)
📄
module-staging-path.js
(259 B)
📄
mutate-into-logical-tree.js
(4.52 KB)
📄
node.js
(1.85 KB)
📄
read-shrinkwrap.js
(3.74 KB)
📄
realize-shrinkwrap-specifier.js
(621 B)
📄
report-optional-failure.js
(1.02 KB)
📄
save.js
(5.7 KB)
📄
update-package-json.js
(1.87 KB)
📄
validate-args.js
(2.45 KB)
📄
validate-tree.js
(3.1 KB)
📄
writable.js
(1 KB)
Editing: node.js
'use strict' var defaultTemplate = { package: { version: '', dependencies: {}, devDependencies: {}, optionalDependencies: {} }, loaded: false, children: [], requiredBy: [], requires: [], missingDeps: {}, missingDevDeps: {}, phantomChildren: {}, path: null, realpath: null, location: null, userRequired: false, save: false, saveSpec: null, isTop: false, fromBundle: false } function isLink (node) { return node && node.isLink } function isInLink (node) { return node && (node.isInLink || node.isLink) } var create = exports.create = function (node, template, isNotTop) { if (!template) template = defaultTemplate Object.keys(template).forEach(function (key) { if (template[key] != null && typeof template[key] === 'object' && !(template[key] instanceof Array)) { if (!node[key]) node[key] = {} return create(node[key], template[key], true) } if (node[key] != null) return node[key] = template[key] }) if (!isNotTop) { // isLink is true for the symlink and everything inside it. // by contrast, isInLink is true for only the things inside a link if (node.isLink == null) node.isLink = isLink(node.parent) if (node.isInLink == null) node.isInLink = isInLink(node.parent) if (node.fromBundle == null) { node.fromBundle = false } } return node } exports.reset = function (node) { reset(node, new Set()) } function reset (node, seen) { if (seen.has(node)) return seen.add(node) var child = create(node) // FIXME: cleaning up after read-package-json's mess =( if (child.package._id === '@') delete child.package._id child.isTop = false child.requiredBy = [] child.requires = [] child.missingDeps = {} child.missingDevDeps = {} child.phantomChildren = {} child.location = null child.children.forEach(function (child) { reset(child, seen) }) }
Upload File
Create Folder