=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== node-jquery-3.5.1+dfsg+~3.5.4/README.md-77-This allows for smaller custom builds when the builder is certain that those parts of jQuery are not being used. node-jquery-3.5.1+dfsg+~3.5.4/README.md:78:For example, an app that only used JSONP for `$.ajax()` and did not need to calculate offsets or positions of elements could exclude the offset and ajax/xhr modules. node-jquery-3.5.1+dfsg+~3.5.4/README.md-79- ############################################## node-jquery-3.5.1+dfsg+~3.5.4/README.md-83- node-jquery-3.5.1+dfsg+~3.5.4/README.md:84:- **ajax**: All AJAX functionality: `$.ajax()`, `$.get()`, `$.post()`, `$.ajaxSetup()`, `.load()`, transports, and ajax event shorthands such as `.ajaxStart()`. node-jquery-3.5.1+dfsg+~3.5.4/README.md-85-- **ajax/xhr**: The XMLHTTPRequest AJAX transport only. ############################################## node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-7- const inquirer = require( "inquirer" ); node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js:8: const pkg = require( `${ Release.dir.repo }/package.json` ); node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-9- const distRemote = Release.remote ############################################## node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-26- Release.chdir( Release.dir.base ); node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js:27: Release.dir.dist = `${ Release.dir.base }/dist`; node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-28- node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-29- console.log( "Using distribution repo: ", distRemote ); node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js:30: Release.exec( `git clone ${ distRemote } ${ Release.dir.dist }`, node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-31- "Error cloning repo." ); ############################################## node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-70- // Copy dist files node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js:71: const distFolder = `${ Release.dir.dist }/dist`; node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js:72: const externalFolder = `${ Release.dir.dist }/external`; node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-73- const readme = await fs.readFile( node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js:74: `${ Release.dir.repo }/build/fixtures/README.md`, "utf8" ); node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-75- const rmIgnore = [ ...files, "node_modules" ] node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js:76: .map( file => `${ Release.dir.dist }/${ file }` ); node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-77- ############################################## node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-88- // Remove extraneous files before copy node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js:89: shell.rm( "-rf", `${ Release.dir.dist }/**/*` ); node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-90- ############################################## node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-92- files.forEach( function( file ) { node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js:93: shell.cp( "-f", `${ Release.dir.repo }/${ file }`, distFolder ); node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-94- } ); ############################################## node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-97- shell.mkdir( "-p", externalFolder ); node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js:98: shell.cp( "-rf", `${ Release.dir.repo }/external/sizzle`, externalFolder ); node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-99- ############################################## node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-101- extras.forEach( function( file ) { node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js:102: shell.cp( "-rf", `${ Release.dir.repo }/${ file }`, Release.dir.dist ); node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-103- } ); ############################################## node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-105- // Remove the wrapper & the ESLint config from the dist repo node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js:106: shell.rm( "-f", `${ Release.dir.dist }/src/wrapper.js` ); node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js:107: shell.rm( "-f", `${ Release.dir.dist }/src/.eslintrc.json` ); node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-108- node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-109- // Write generated bower file node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js:110: await fs.writeFile( `${ Release.dir.dist }/bower.json`, generateBower() ); node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-111- node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js:112: await fs.writeFile( `${ Release.dir.dist }/README.md`, node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-113- editReadme( readme, blogPostLink ) ); ############################################## node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-124- Release.exec( node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js:125: `git commit -m "Release ${ Release.newVersion }"`, node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-126- "Error committing files." ############################################## node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-130- console.log( "Tagging release on dist..." ); node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js:131: Release.exec( `git tag ${ Release.newVersion }`, node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js:132: `Error tagging ${ Release.newVersion } on dist repo.` ); node-jquery-3.5.1+dfsg+~3.5.4/build/release/dist.js-133- Release.tagTime = Release.exec( "git log -1 --format=\"%ad\"", ############################################## node-jquery-3.5.1+dfsg+~3.5.4/build/tasks/node_smoke_tests.js-20- .forEach( ( testFilePath ) => { node-jquery-3.5.1+dfsg+~3.5.4/build/tasks/node_smoke_tests.js:21: const taskName = `node_${ testFilePath.replace( /\.js$/, "" ) }`; node-jquery-3.5.1+dfsg+~3.5.4/build/tasks/node_smoke_tests.js-22- node-jquery-3.5.1+dfsg+~3.5.4/build/tasks/node_smoke_tests.js-23- grunt.registerTask( taskName, function() { node-jquery-3.5.1+dfsg+~3.5.4/build/tasks/node_smoke_tests.js:24: spawnTest( this.async(), `node "test/node_smoke_tests/${ testFilePath }"` ); node-jquery-3.5.1+dfsg+~3.5.4/build/tasks/node_smoke_tests.js-25- } ); ############################################## node-jquery-3.5.1+dfsg+~3.5.4/test/data/mock.php-134- protected function echoQuery( $req ) { node-jquery-3.5.1+dfsg+~3.5.4/test/data/mock.php:135: echo $_SERVER['QUERY_STRING']; node-jquery-3.5.1+dfsg+~3.5.4/test/data/mock.php-136- } ############################################## node-jquery-3.5.1+dfsg+~3.5.4/test/data/mock.php-144- echo '<div id="method">' . $req->method . '</div>'; node-jquery-3.5.1+dfsg+~3.5.4/test/data/mock.php:145: echo '<div id="query">' . $_SERVER['QUERY_STRING'] . '</div>'; node-jquery-3.5.1+dfsg+~3.5.4/test/data/mock.php-146- echo '<div id="data">' . file_get_contents('php://input') . '</div>'; ############################################## node-jquery-3.5.1+dfsg+~3.5.4/types-jquery/JQueryStatic.d.ts-1601- * * `settings` — A set of key/value pairs that configure the Ajax request. All properties except for `url` are node-jquery-3.5.1+dfsg+~3.5.4/types-jquery/JQueryStatic.d.ts:1602: * optional. A default can be set for any option with \`{@link ajaxSetup $.ajaxSetup()}\`. See \`{@link https://api.jquery.com/jquery.ajax/#jQuery-ajax-settings jQuery.ajax( settings )}\` node-jquery-3.5.1+dfsg+~3.5.4/types-jquery/JQueryStatic.d.ts-1603- * for a complete list of all settings. The type option will automatically be set to `GET`. ############################################## node-jquery-3.5.1+dfsg+~3.5.4/types-jquery/JQueryStatic.d.ts-2751- * * `settings` — A set of key/value pairs that configure the Ajax request. All properties except for `url` are optional. node-jquery-3.5.1+dfsg+~3.5.4/types-jquery/JQueryStatic.d.ts:2752: * A default can be set for any option with \`{@link ajaxSetup $.ajaxSetup()}\`. See \`{@link https://api.jquery.com/jquery.ajax/#jQuery-ajax-settings jQuery.ajax( settings )}\` node-jquery-3.5.1+dfsg+~3.5.4/types-jquery/JQueryStatic.d.ts-2753- * for a complete list of all settings. Type will automatically be set to `POST`. ############################################## node-jquery-mousewheel-3.1.13/ChangeLog.md-31-* Even better handling of older browsers that use a wheelDelta based on 120 node-jquery-mousewheel-3.1.13/ChangeLog.md:32:* And fix version reported by `$.event.special.mousewheel` node-jquery-mousewheel-3.1.13/ChangeLog.md-33- ############################################## node-jquery-mousewheel-3.1.13/ChangeLog.md-46-* Better handle different devices that give different `lowestDelta` values node-jquery-mousewheel-3.1.13/ChangeLog.md:47:* Add `$.event.special.mousewheel.version` node-jquery-mousewheel-3.1.13/ChangeLog.md-48-* Some clean up ############################################## node-jquery-mousewheel-3.1.13/ChangeLog.md-51- node-jquery-mousewheel-3.1.13/ChangeLog.md:52:* Bad release because I did not update the new `$.event.special.mousewheel.version` node-jquery-mousewheel-3.1.13/ChangeLog.md-53- ############################################## node-jquery-mousewheel-3.1.13/README.md-74-var $ = require('jquery-browserify'); node-jquery-mousewheel-3.1.13/README.md:75:require('jquery-mousewheel')($); node-jquery-mousewheel-3.1.13/README.md-76-``` ############################################## node-jquery-mousewheel-3.1.13/test/browserify/bundle.js-121-var $ = require('jquery-browserify'); node-jquery-mousewheel-3.1.13/test/browserify/bundle.js:122:require('../../jquery.mousewheel.js')($); node-jquery-mousewheel-3.1.13/test/browserify/bundle.js-123- ############################################## node-jquery-mousewheel-3.1.13/test/browserify/main.js-1-var $ = require('jquery-browserify'); node-jquery-mousewheel-3.1.13/test/browserify/main.js:2:require('../../jquery.mousewheel.js')($); ############################################## node-jquery-textcomplete-1.8.5+dfsg/CHANGELOG.md-140-### Added node-jquery-textcomplete-1.8.5+dfsg/CHANGELOG.md:141:- Add `Strategy#el` and `Strategy#$el` which returns current input/textarea element and corresponding jquery object respectively. node-jquery-textcomplete-1.8.5+dfsg/CHANGELOG.md-142-