mirror of
https://github.com/S2-/gitlit
synced 2025-08-04 05:10:05 +02:00
add node modules to repo
This commit is contained in:
69
node_modules/env-paths/index.js
generated
vendored
Normal file
69
node_modules/env-paths/index.js
generated
vendored
Normal file
@@ -0,0 +1,69 @@
|
||||
'use strict';
|
||||
const path = require('path');
|
||||
const os = require('os');
|
||||
|
||||
const homedir = os.homedir();
|
||||
const tmpdir = os.tmpdir();
|
||||
const env = process.env;
|
||||
|
||||
const macos = name => {
|
||||
const library = path.join(homedir, 'Library');
|
||||
|
||||
return {
|
||||
data: path.join(library, 'Application Support', name),
|
||||
config: path.join(library, 'Preferences', name),
|
||||
cache: path.join(library, 'Caches', name),
|
||||
log: path.join(library, 'Logs', name),
|
||||
temp: path.join(tmpdir, name)
|
||||
};
|
||||
};
|
||||
|
||||
const windows = name => {
|
||||
const appData = env.LOCALAPPDATA || path.join(homedir, 'AppData', 'Local');
|
||||
|
||||
return {
|
||||
// data/config/cache/log are invented by me as Windows isn't opinionated about this
|
||||
data: path.join(appData, name, 'Data'),
|
||||
config: path.join(appData, name, 'Config'),
|
||||
cache: path.join(appData, name, 'Cache'),
|
||||
log: path.join(appData, name, 'Log'),
|
||||
temp: path.join(tmpdir, name)
|
||||
};
|
||||
};
|
||||
|
||||
// https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html
|
||||
const linux = name => {
|
||||
const username = path.basename(homedir);
|
||||
|
||||
return {
|
||||
data: path.join(env.XDG_DATA_HOME || path.join(homedir, '.local', 'share'), name),
|
||||
config: path.join(env.XDG_CONFIG_HOME || path.join(homedir, '.config'), name),
|
||||
cache: path.join(env.XDG_CACHE_HOME || path.join(homedir, '.cache'), name),
|
||||
// https://wiki.debian.org/XDGBaseDirectorySpecification#state
|
||||
log: path.join(env.XDG_STATE_HOME || path.join(homedir, '.local', 'state'), name),
|
||||
temp: path.join(tmpdir, username, name)
|
||||
};
|
||||
};
|
||||
|
||||
module.exports = (name, opts) => {
|
||||
if (typeof name !== 'string') {
|
||||
throw new TypeError(`Expected string, got ${typeof name}`);
|
||||
}
|
||||
|
||||
opts = Object.assign({suffix: 'nodejs'}, opts);
|
||||
|
||||
if (opts.suffix) {
|
||||
// add suffix to prevent possible conflict with native apps
|
||||
name += `-${opts.suffix}`;
|
||||
}
|
||||
|
||||
if (process.platform === 'darwin') {
|
||||
return macos(name);
|
||||
}
|
||||
|
||||
if (process.platform === 'win32') {
|
||||
return windows(name);
|
||||
}
|
||||
|
||||
return linux(name);
|
||||
};
|
21
node_modules/env-paths/license
generated
vendored
Normal file
21
node_modules/env-paths/license
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (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:
|
||||
|
||||
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.
|
82
node_modules/env-paths/package.json
generated
vendored
Normal file
82
node_modules/env-paths/package.json
generated
vendored
Normal file
@@ -0,0 +1,82 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
"env-paths@1.0.0",
|
||||
"/home/s2/Documents/Code/gitlit"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "env-paths@1.0.0",
|
||||
"_id": "env-paths@1.0.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-QWgTO0K7BcOKNbGuQ5fIKYqzaeA=",
|
||||
"_location": "/env-paths",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "env-paths@1.0.0",
|
||||
"name": "env-paths",
|
||||
"escapedName": "env-paths",
|
||||
"rawSpec": "1.0.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.0.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/electron-download"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/env-paths/-/env-paths-1.0.0.tgz",
|
||||
"_spec": "1.0.0",
|
||||
"_where": "/home/s2/Documents/Code/gitlit",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/sindresorhus/env-paths/issues"
|
||||
},
|
||||
"description": "Get paths for storing things like data, config, cache, etc",
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"xo": "*"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=4"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/sindresorhus/env-paths#readme",
|
||||
"keywords": [
|
||||
"common",
|
||||
"user",
|
||||
"paths",
|
||||
"env",
|
||||
"environment",
|
||||
"directory",
|
||||
"dir",
|
||||
"appdir",
|
||||
"path",
|
||||
"data",
|
||||
"config",
|
||||
"cache",
|
||||
"logs",
|
||||
"temp",
|
||||
"linux",
|
||||
"unix"
|
||||
],
|
||||
"license": "MIT",
|
||||
"name": "env-paths",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/sindresorhus/env-paths.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"version": "1.0.0",
|
||||
"xo": {
|
||||
"esnext": true
|
||||
}
|
||||
}
|
71
node_modules/env-paths/readme.md
generated
vendored
Normal file
71
node_modules/env-paths/readme.md
generated
vendored
Normal file
@@ -0,0 +1,71 @@
|
||||
# env-paths [](https://travis-ci.org/sindresorhus/env-paths)
|
||||
|
||||
> Get paths for storing things like data, config, cache, etc
|
||||
|
||||
|
||||
## Install
|
||||
|
||||
```
|
||||
$ npm install --save env-paths
|
||||
```
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
const envPaths = require('env-paths');
|
||||
const paths = envPaths('MyApp');
|
||||
|
||||
paths.data;
|
||||
//=> '/home/sindresorhus/.local/share/MyApp-nodejs'
|
||||
|
||||
paths.config
|
||||
//=> '/home/sindresorhus/.config/MyApp-nodejs'
|
||||
```
|
||||
|
||||
|
||||
## API
|
||||
|
||||
### paths = envPaths(name, [options])
|
||||
|
||||
#### name
|
||||
|
||||
Type: `string`
|
||||
|
||||
Name of your project. Used to generate the paths.
|
||||
|
||||
#### options
|
||||
|
||||
##### suffix
|
||||
|
||||
Type: `string`<br>
|
||||
Default: `'nodejs'`
|
||||
|
||||
**Don't use this option unless you really have to!**<br>
|
||||
Suffix appended to the project name to avoid name conflicts with native
|
||||
apps. Pass an empty string to disable it.
|
||||
|
||||
### paths.data
|
||||
|
||||
Directory for data files.
|
||||
|
||||
### paths.config
|
||||
|
||||
Directory for config files.
|
||||
|
||||
### paths.cache
|
||||
|
||||
Directory for non-essential data files.
|
||||
|
||||
### paths.log
|
||||
|
||||
Directory for log files.
|
||||
|
||||
### paths.temp
|
||||
|
||||
Directory for temporary files.
|
||||
|
||||
|
||||
## License
|
||||
|
||||
MIT © [Sindre Sorhus](https://sindresorhus.com)
|
Reference in New Issue
Block a user