Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.216.32
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lib /
node_modules /
npm /
lib /
install /
Delete
Unzip
Name
Size
Permission
Date
Action
action
[ DIR ]
drwxr-xr-x
2017-12-07 00:46
access-error.js
202
B
-rw-r--r--
2017-11-03 01:22
actions.js
5.52
KB
-rw-r--r--
2017-11-28 04:37
and-add-parent-to-errors.js
324
B
-rw-r--r--
2017-11-03 01:22
and-finish-tracker.js
360
B
-rw-r--r--
2017-11-03 01:22
and-ignore-errors.js
204
B
-rw-r--r--
2017-11-03 01:22
check-permissions.js
1.85
KB
-rw-r--r--
2017-11-03 01:22
copy-tree.js
881
B
-rw-r--r--
2017-11-03 01:22
decompose-actions.js
1.81
KB
-rw-r--r--
2017-11-03 01:22
deps.js
26.41
KB
-rw-r--r--
2017-11-28 04:37
diff-trees.js
8.52
KB
-rw-r--r--
2017-11-28 04:37
exists.js
775
B
-rw-r--r--
2017-11-03 01:22
flatten-tree.js
1021
B
-rw-r--r--
2017-11-03 01:22
get-requested.js
427
B
-rw-r--r--
2017-11-03 01:22
inflate-bundled.js
628
B
-rw-r--r--
2017-11-03 01:22
inflate-shrinkwrap.js
7.24
KB
-rw-r--r--
2017-11-28 04:37
is-dev-dep.js
175
B
-rw-r--r--
2017-11-03 01:22
is-extraneous.js
618
B
-rw-r--r--
2017-11-03 01:22
is-fs-access-available.js
763
B
-rw-r--r--
2017-11-03 01:22
is-only-dev.js
1.19
KB
-rw-r--r--
2017-11-03 01:22
is-only-optional.js
462
B
-rw-r--r--
2017-11-03 01:22
is-opt-dep.js
185
B
-rw-r--r--
2017-11-03 01:22
is-prod-dep.js
172
B
-rw-r--r--
2017-11-03 01:22
module-staging-path.js
259
B
-rw-r--r--
2017-11-03 01:22
mutate-into-logical-tree.js
4.52
KB
-rw-r--r--
2017-11-03 01:22
node.js
1.85
KB
-rw-r--r--
2017-11-03 01:22
read-shrinkwrap.js
1.97
KB
-rw-r--r--
2017-11-03 01:22
realize-shrinkwrap-specifier.js
621
B
-rw-r--r--
2017-11-28 04:37
report-optional-failure.js
1.02
KB
-rw-r--r--
2017-11-03 01:22
save.js
5.6
KB
-rw-r--r--
2017-11-28 04:37
update-package-json.js
1.87
KB
-rw-r--r--
2017-11-03 01:22
validate-args.js
2.45
KB
-rw-r--r--
2017-11-03 01:22
validate-tree.js
3.1
KB
-rw-r--r--
2017-11-03 01:22
writable.js
1
KB
-rw-r--r--
2017-11-03 01:22
Save
Rename
'use strict' var path = require('path') var validate = require('aproba') var asyncMap = require('slide').asyncMap var chain = require('slide').chain var npmInstallChecks = require('npm-install-checks') var checkGit = npmInstallChecks.checkGit var clone = require('lodash.clonedeep') var normalizePackageData = require('normalize-package-data') var npm = require('../npm.js') var andFinishTracker = require('./and-finish-tracker.js') var flattenTree = require('./flatten-tree.js') var validateAllPeerDeps = require('./deps.js').validateAllPeerDeps var packageId = require('../utils/package-id.js') module.exports = function (idealTree, log, next) { validate('OOF', arguments) var moduleMap = flattenTree(idealTree) var modules = Object.keys(moduleMap).map(function (name) { return moduleMap[name] }) chain([ [asyncMap, modules, function (mod, done) { chain([ mod.parent && !mod.isLink && [checkGit, mod.realpath], [checkErrors, mod, idealTree] ], done) }], [thenValidateAllPeerDeps, idealTree], [thenCheckTop, idealTree], [thenCheckDuplicateDeps, idealTree] ], andFinishTracker(log, next)) } function checkErrors (mod, idealTree, next) { if (mod.error && (mod.parent || path.resolve(npm.globalDir, '..') !== mod.path)) idealTree.warnings.push(mod.error) next() } function thenValidateAllPeerDeps (idealTree, next) { validate('OF', arguments) validateAllPeerDeps(idealTree, function (tree, pkgname, version) { var warn = new Error(packageId(tree) + ' requires a peer of ' + pkgname + '@' + version + ' but none is installed. You must install peer dependencies yourself.') warn.code = 'EPEERINVALID' idealTree.warnings.push(warn) }) next() } function thenCheckTop (idealTree, next) { validate('OF', arguments) if (idealTree.package.error) return next() // FIXME: when we replace read-package-json with something less magic, // this should done elsewhere. // As it is, the package has already been normalized and thus some // errors are suppressed. var pkg = clone(idealTree.package) try { normalizePackageData(pkg, function (warn) { var warnObj = new Error(packageId(idealTree) + ' ' + warn) warnObj.code = 'EPACKAGEJSON' idealTree.warnings.push(warnObj) }, false) } catch (er) { er.code = 'EPACKAGEJSON' idealTree.warnings.push(er) } var nodeVersion = npm.config.get('node-version') if (/-/.test(nodeVersion)) { // if this is a prerelease node⦠var warnObj = new Error('You are using a pre-release version of node and things may not work as expected') warnObj.code = 'ENODEPRE' idealTree.warnings.push(warnObj) } next() } // check for deps duplciated between devdeps and regular deps function thenCheckDuplicateDeps (idealTree, next) { var deps = idealTree.package.dependencies || {} var devDeps = idealTree.package.devDependencies || {} for (var pkg in devDeps) { if (pkg in deps) { var warnObj = new Error('The package ' + pkg + ' is included as both a dev and production dependency.') warnObj.code = 'EDUPLICATEDEP' idealTree.warnings.push(warnObj) } } next() }