uawdijnntqw1x1x1
IP : 216.73.216.110
Hostname : 6.87.74.97.host.secureserver.net
Kernel : Linux 6.87.74.97.host.secureserver.net 4.18.0-553.83.1.el8_10.x86_64 #1 SMP Mon Nov 10 04:22:44 EST 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
emeraadmin
/
www
/
node_modules
/
liftup
/
..
/
map-cache
/
..
/
..
/
4d695
/
global-prefix.tar
/
/
package.json000064400000005517151676730230007054 0ustar00{ "_from": "global-prefix@^1.0.1", "_id": "global-prefix@1.0.2", "_inBundle": false, "_integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", "_location": "/global-prefix", "_phantomChildren": {}, "_requested": { "type": "range", "registry": true, "raw": "global-prefix@^1.0.1", "name": "global-prefix", "escapedName": "global-prefix", "rawSpec": "^1.0.1", "saveSpec": null, "fetchSpec": "^1.0.1" }, "_requiredBy": [ "/global-modules" ], "_resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", "_shasum": "dbf743c6c14992593c655568cb66ed32c0122ebe", "_spec": "global-prefix@^1.0.1", "_where": "C:\\xampp\\htdocs\\emeraltd\\node_modules\\global-modules", "author": { "name": "Jon Schlinkert", "url": "https://github.com/jonschlinkert" }, "bugs": { "url": "https://github.com/jonschlinkert/global-prefix/issues" }, "bundleDependencies": false, "contributors": [ { "name": "Alexandr Bogachev", "url": "https://github.com/rmbaad" }, { "name": "Brian Woodward", "url": "https://twitter.com/doowb" }, { "name": "Charlike Mike Reagent", "url": "https://i.am.charlike.online" }, { "name": "JasonChang", "url": "https://packagist.org/packages/jason-chang" }, { "name": "Jon Schlinkert", "url": "http://twitter.com/jonschlinkert" }, { "name": "Jorrit Schippers", "url": "https://www.ncode.nl" }, { "name": "Mathias Rasmussen", "url": "chrome://dino" }, { "name": "Ross Fenning", "url": "http://rossfenning.co.uk" } ], "dependencies": { "expand-tilde": "^2.0.2", "homedir-polyfill": "^1.0.1", "ini": "^1.3.4", "is-windows": "^1.0.1", "which": "^1.2.14" }, "deprecated": false, "description": "Get the npm global path prefix.", "devDependencies": { "gulp-format-md": "^0.1.12", "mocha": "^3.4.2" }, "engines": { "node": ">=0.10.0" }, "files": [ "index.js" ], "homepage": "https://github.com/jonschlinkert/global-prefix", "keywords": [ "global", "module", "modules", "npm", "path", "prefix", "resolve" ], "license": "MIT", "main": "index.js", "name": "global-prefix", "repository": { "type": "git", "url": "git+https://github.com/jonschlinkert/global-prefix.git" }, "scripts": { "test": "mocha" }, "verb": { "run": true, "toc": false, "layout": "default", "tasks": [ "readme" ], "plugins": [ "gulp-format-md" ], "related": { "list": [ "global-modules", "global-paths" ] }, "reflinks": [ "verb" ], "lint": { "reflinks": true } }, "version": "1.0.2" } LICENSE000064400000002077151676730230005571 0ustar00The MIT License (MIT) Copyright (c) 2015-2017, Jon Schlinkert. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.index.js000064400000004432151676730240006227 0ustar00/*! * global-prefix <https://github.com/jonschlinkert/global-prefix> * * Copyright (c) 2015-2017 Jon Schlinkert. * Licensed under the MIT license. */ 'use strict'; var fs = require('fs'); var path = require('path'); var expand = require('expand-tilde'); var homedir = require('homedir-polyfill'); var ini = require('ini'); var prefix; function getPrefix() { if (process.env.PREFIX) { prefix = process.env.PREFIX; } else { // Start by checking if the global prefix is set by the user var home = homedir(); if (home) { // homedir() returns undefined if $HOME not set; path.resolve requires strings var userConfig = path.resolve(home, '.npmrc'); prefix = tryConfigPath(userConfig); } if (!prefix) { // Otherwise find the path of npm var npm = tryNpmPath(); if (npm) { // Check the built-in npm config file var builtinConfig = path.resolve(npm, '..', '..', 'npmrc'); prefix = tryConfigPath(builtinConfig); if (prefix) { // Now the global npm config can also be checked. var globalConfig = path.resolve(prefix, 'etc', 'npmrc'); prefix = tryConfigPath(globalConfig) || prefix; } } if (!prefix) fallback(); } } if (prefix) { return expand(prefix); } } function fallback() { var isWindows = require('is-windows'); if (isWindows()) { // c:\node\node.exe --> prefix=c:\node\ prefix = process.env.APPDATA ? path.join(process.env.APPDATA, 'npm') : path.dirname(process.execPath); } else { // /usr/local/bin/node --> prefix=/usr/local prefix = path.dirname(path.dirname(process.execPath)); // destdir only is respected on Unix if (process.env.DESTDIR) { prefix = path.join(process.env.DESTDIR, prefix); } } } function tryNpmPath() { try { return fs.realpathSync(require('which').sync('npm')); } catch (err) {} return null; } function tryConfigPath(configPath) { try { var data = fs.readFileSync(configPath, 'utf-8'); var config = ini.parse(data); if (config.prefix) return config.prefix; } catch (err) {} return null; } /** * Expose `prefix` */ Object.defineProperty(module, 'exports', { enumerable: true, get: function() { return prefix || (prefix = getPrefix()); } }); README.md000064400000006666151676730240006054 0ustar00# global-prefix [](https://www.npmjs.com/package/global-prefix) [](https://npmjs.org/package/global-prefix) [](https://npmjs.org/package/global-prefix) [](https://travis-ci.org/jonschlinkert/global-prefix) [](https://ci.appveyor.com/project/jonschlinkert/global-prefix) > Get the npm global path prefix. ## Install Install with [npm](https://www.npmjs.com/): ```sh $ npm install --save global-prefix ``` This is partially based on the code used by npm internally to resolve the global prefix. ## Usage ```js var prefix = require('global-prefix'); //=> '/usr/local' (this path will differ by system and user-defined config) ``` ## About ### Related projects * [global-modules](https://www.npmjs.com/package/global-modules): The directory used by npm for globally installed npm modules. | [homepage](https://github.com/jonschlinkert/global-modules "The directory used by npm for globally installed npm modules.") * [global-paths](https://www.npmjs.com/package/global-paths): Returns an array of unique "global" directories based on the user's platform and environment. The… [more](https://github.com/jonschlinkert/global-paths) | [homepage](https://github.com/jonschlinkert/global-paths "Returns an array of unique "global" directories based on the user's platform and environment. The resulting paths can be used for doing lookups for generators or other globally installed npm packages. Node.js / JavaScript.") ### Contributing Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new). ### Contributors | **Commits** | **Contributor** | | --- | --- | | 16 | [jonschlinkert](https://github.com/jonschlinkert) | | 15 | [doowb](https://github.com/doowb) | | 1 | [rmbaad](https://github.com/rmbaad) | | 1 | [avengerpenguin](https://github.com/avengerpenguin) | | 1 | [jason-chang](https://github.com/jason-chang) | | 1 | [jorrit](https://github.com/jorrit) | | 1 | [mathiasvr](https://github.com/mathiasvr) | | 1 | [tunnckoCore](https://github.com/tunnckoCore) | ### Building docs _(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_ To generate the readme, run the following command: ```sh $ npm install -g verbose/verb#dev verb-generate-readme && verb ``` ### Running tests Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command: ```sh $ npm install && npm test ``` ### Author **Jon Schlinkert** * [github/jonschlinkert](https://github.com/jonschlinkert) * [twitter/jonschlinkert](https://twitter.com/jonschlinkert) ### License Copyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert). Released under the [MIT License](LICENSE). *** _This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on June 28, 2017._
/home/emeraadmin/www/node_modules/liftup/../map-cache/../../4d695/global-prefix.tar