!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/node-red/node_modules/grunt-jsdoc/   drwxr-xr-x
Free 12.94 GB of 57.97 GB (22.33%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Gruntfile.js (2.83 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
module.exports = function(grunt) {
    'use strict';

    require('load-grunt-tasks')(grunt);

    // Project configuration.
    grunt.initConfig({

        clean: {
            options: {
                force : true
            },
            test: ['doc']
        },

        jsdoc: {
            basic: {
                src: ['tasks/**.js', 'tasks/lib/*.js'],
                options: {
                    destination: 'doc/basic'
                }
            },
            alternate: {
                src: ['tasks'],
                dest : 'doc/alternate',
                options: {
                    readme : 'README.md',
                    recurse : true,
                    private : false
                }
            },
            spacepack: {
                src: ['tasks/**/*.js'],
                options: {
                    destination: 'doc/pack age',
                    package: 'package.json'
                }
            },
            docstrap: {
                src: ['tasks/**.js', 'tasks/lib/*.js', 'README.md'],
                options: {
                    destination: 'doc/docstrap',
                    template: 'node_modules/ink-docstrap/template',
                    configure: 'node_modules/ink-docstrap/template/jsdoc.conf.json'
                }
            },
            nosrc : {
                options: {
                    configure : 'test/nosrc.json'
                }
            }
        },
        nodeunit: {
            unit:      ['test/jsdoc-plugin_test.js'],
            basic:     ['test/jsdoc-basic_test.js'],
            alternate: ['test/jsdoc-alternate_test.js'],
            docstrap:  ['test/jsdoc-docstrap_test.js'],
            spacepack: ['test/jsdoc-spacepack_test.js'],
            nosrc: ['test/jsdoc-nosrc_test.js']
        },

        eslint: {
            all: {
                src: ['Gruntfile.js', 'tasks/**/*.js', 'test/**/*.js']
            }
        }
    });

    // Load local tasks.
    grunt.loadTasks('tasks');


    //testing tasks
    grunt.registerTask('test-basic',     'Test basic jsdoc', ['jsdoc:basic', 'nodeunit:basic']);
    grunt.registerTask('test-alternate', 'Test jsdoc with alternate options', ['jsdoc:alternate', 'nodeunit:alternate']);
    grunt.registerTask('test-docstrap',  'Test jsdoc with a template', ['jsdoc:docstrap', 'nodeunit:docstrap']);
    grunt.registerTask('test-spacepack', 'Test jsdoc with a package and spaces in the paths', ['jsdoc:spacepack', 'nodeunit:spacepack']);
    grunt.registerTask('test-nosrc', 'Test jsdoc without src and dest, only a config', ['jsdoc:nosrc', 'nodeunit:nosrc']);
    grunt.registerTask('test',           'Full test suite', ['clean:test', 'nodeunit:unit', 'test-basic', 'test-alternate', 'test-docstrap', 'test-spacepack', 'test-nosrc']);

    grunt.registerTask('default', 'Default task will lint and test', ['eslint:all', 'test']);
};


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.005 ]--