fixes and admin data

This commit is contained in:
2021-02-09 18:30:17 +01:00
parent 9dd4d10396
commit 93bff025e9
73 changed files with 1638 additions and 2411 deletions

2
node_modules/global-dirs/license generated vendored
View File

@@ -1,6 +1,6 @@
MIT License
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
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:

145
node_modules/global-dirs/package.json generated vendored
View File

@@ -1,59 +1,88 @@
{
"name": "global-dirs",
"version": "2.0.1",
"description": "Get the directory of globally installed packages and binaries",
"license": "MIT",
"repository": "sindresorhus/global-dirs",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "xo && ava && tsd"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"global",
"prefix",
"path",
"paths",
"npm",
"yarn",
"node",
"modules",
"node-modules",
"package",
"packages",
"binary",
"binaries",
"bin",
"directory",
"directories",
"npmrc",
"rc",
"config",
"root",
"resolve"
],
"dependencies": {
"ini": "^1.3.5"
},
"devDependencies": {
"ava": "^2.4.0",
"execa": "^3.2.0",
"import-fresh": "^3.1.0",
"tsd": "^0.10.0",
"xo": "^0.25.3"
}
,"_resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-2.0.1.tgz"
,"_integrity": "sha512-5HqUqdhkEovj2Of/ms3IeS/EekcO54ytHRLV4PEY2rhRwrHXLQjeVEES0Lhka0xwNDtGYn58wyC4s5+MHsOO6A=="
,"_from": "global-dirs@2.0.1"
}
"_from": "global-dirs@^2.0.1",
"_id": "global-dirs@2.1.0",
"_inBundle": false,
"_integrity": "sha512-MG6kdOUh/xBnyo9cJFeIKkLEc1AyFq42QTU4XiX51i2NEdxLxLWXIjEjmqKeSuKR7pAZjTqUVoT2b2huxVLgYQ==",
"_location": "/global-dirs",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "global-dirs@^2.0.1",
"name": "global-dirs",
"escapedName": "global-dirs",
"rawSpec": "^2.0.1",
"saveSpec": null,
"fetchSpec": "^2.0.1"
},
"_requiredBy": [
"/is-installed-globally"
],
"_resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-2.1.0.tgz",
"_shasum": "e9046a49c806ff04d6c1825e196c8f0091e8df4d",
"_spec": "global-dirs@^2.0.1",
"_where": "C:\\Users\\Jonasz\\Desktop\\Menui\\menui_backend\\node_modules\\is-installed-globally",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"bugs": {
"url": "https://github.com/sindresorhus/global-dirs/issues"
},
"bundleDependencies": false,
"dependencies": {
"ini": "1.3.7"
},
"deprecated": false,
"description": "Get the directory of globally installed packages and binaries",
"devDependencies": {
"ava": "^2.4.0",
"execa": "^3.2.0",
"import-fresh": "^3.1.0",
"tsd": "^0.10.0",
"xo": "^0.25.3"
},
"engines": {
"node": ">=8"
},
"files": [
"index.js",
"index.d.ts"
],
"funding": "https://github.com/sponsors/sindresorhus",
"homepage": "https://github.com/sindresorhus/global-dirs#readme",
"keywords": [
"global",
"prefix",
"path",
"paths",
"npm",
"yarn",
"node",
"modules",
"node-modules",
"package",
"packages",
"binary",
"binaries",
"bin",
"directory",
"directories",
"npmrc",
"rc",
"config",
"root",
"resolve"
],
"license": "MIT",
"name": "global-dirs",
"repository": {
"type": "git",
"url": "git+https://github.com/sindresorhus/global-dirs.git"
},
"scripts": {
"test": "xo && ava && tsd"
},
"version": "2.1.0"
}

7
node_modules/global-dirs/readme.md generated vendored
View File

@@ -1,17 +1,15 @@
# global-dirs [![Build Status](https://travis-ci.org/sindresorhus/global-dirs.svg?branch=master)](https://travis-ci.org/sindresorhus/global-dirs)
# global-dirs
> Get the directory of globally installed packages and binaries
Uses the same resolution logic as `npm` and `yarn`.
## Install
```
$ npm install global-dirs
```
## Usage
```js
@@ -30,7 +28,6 @@ console.log(globalDirectories.yarn.packages);
//=> '/Users/sindresorhus/.config/yarn/global/node_modules'
```
## API
### globalDirectories
@@ -56,14 +53,12 @@ Directory with directories for packages and binaries. You probably want either o
Equivalent to `npm prefix --global`.
## Related
- [import-global](https://github.com/sindresorhus/import-global) - Import a globally installed module
- [resolve-global](https://github.com/sindresorhus/resolve-global) - Resolve the path of a globally installed module
- [is-installed-globally](https://github.com/sindresorhus/is-installed-globally) - Check if your package was installed globally
---
<div align="center">