===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
node-raven-js-3.22.1+dfsg/docs/config.rst-267-            The name and version of the Sentry client of the form ``client/version``.
node-raven-js-3.22.1+dfsg/docs/config.rst:268:            In this case, ``raven-js/${Raven.VERSION}``.
node-raven-js-3.22.1+dfsg/docs/config.rst-269-        sentry_key
##############################################
node-raven-js-3.22.1+dfsg/docs/contributing.rst-106-* Bump version numbers in ``package.json``, ``bower.json``, and ``src/raven.js``.
node-raven-js-3.22.1+dfsg/docs/contributing.rst:107:* ``$ grunt dist`` This will compile a new version and update it in the
node-raven-js-3.22.1+dfsg/docs/contributing.rst-108-  ``dist/`` folder.
##############################################
node-raven-js-3.22.1+dfsg/docs/contributing.rst-110-* Commit new version, create a tag. Push to GitHub.
node-raven-js-3.22.1+dfsg/docs/contributing.rst:111:* ``$ grunt publish`` to recompile all plugins and all permutations and
node-raven-js-3.22.1+dfsg/docs/contributing.rst-112-  upload to S3.
node-raven-js-3.22.1+dfsg/docs/contributing.rst:113:* ``$ npm publish`` to push to npm.
node-raven-js-3.22.1+dfsg/docs/contributing.rst-114-* Confirm that the new version exists behind ``cdn.ravenjs.com``
##############################################
node-raven-js-3.22.1+dfsg/docs/integrations/angularjs.rst-7-
node-raven-js-3.22.1+dfsg/docs/integrations/angularjs.rst:8:Additionally, the Raven.js AngularJS plugin will catch any AngularJS-specific exceptions reported through AngularJS's ``$exceptionHandler`` interface.
node-raven-js-3.22.1+dfsg/docs/integrations/angularjs.rst-9-
##############################################
node-raven-js-3.22.1+dfsg/docs/tips.rst-132-  JSONP requests.
node-raven-js-3.22.1+dfsg/docs/tips.rst:133:* If ``$.ajax()`` or ``$.ajaxSetup()`` is called with the ``global``
node-raven-js-3.22.1+dfsg/docs/tips.rst-134-  option set to ``false``, the ``.ajaxError()`` method will not fire.
##############################################
node-raven-js-3.22.1+dfsg/packages/core/lib/Interfaces/DSN.ts-26-    return (
node-raven-js-3.22.1+dfsg/packages/core/lib/Interfaces/DSN.ts:27:      `${this.dsn.protocol}://${this.dsn.user}${withPass ? this.dsn.pass : ''}` +
node-raven-js-3.22.1+dfsg/packages/core/lib/Interfaces/DSN.ts:28:      `@${this.dsn.host}${this.dsn.port ? ':' + this.dsn.port : ''}${this.dsn.path}`
node-raven-js-3.22.1+dfsg/packages/core/lib/Interfaces/DSN.ts-29-    );
##############################################
node-raven-js-3.22.1+dfsg/scripts/deploy.js-12-
node-raven-js-3.22.1+dfsg/scripts/deploy.js:13:  console.log(`\nCurrent version: ${currentVersion}\n`);
node-raven-js-3.22.1+dfsg/scripts/deploy.js-14-
##############################################
node-raven-js-3.22.1+dfsg/scripts/deploy.js-38-            case 'major':
node-raven-js-3.22.1+dfsg/scripts/deploy.js:39:              resolve(`${major + 1}.0.0`);
node-raven-js-3.22.1+dfsg/scripts/deploy.js-40-              break;
node-raven-js-3.22.1+dfsg/scripts/deploy.js-41-            case 'minor':
node-raven-js-3.22.1+dfsg/scripts/deploy.js:42:              resolve(`${major}.${minor + 1}.0`);
node-raven-js-3.22.1+dfsg/scripts/deploy.js-43-              break;
node-raven-js-3.22.1+dfsg/scripts/deploy.js-44-            case 'patch':
node-raven-js-3.22.1+dfsg/scripts/deploy.js:45:              resolve(`${major}.${minor}.${patch + 1}`);
node-raven-js-3.22.1+dfsg/scripts/deploy.js-46-              break;
node-raven-js-3.22.1+dfsg/scripts/deploy.js-47-            case 'skip':
node-raven-js-3.22.1+dfsg/scripts/deploy.js:48:              resolve(`${major}.${minor}.${patch}`);
node-raven-js-3.22.1+dfsg/scripts/deploy.js-49-              break;
##############################################
node-raven-js-3.22.1+dfsg/scripts/deploy.js-57-    name: 'shouldUpdateFiles',
node-raven-js-3.22.1+dfsg/scripts/deploy.js:58:    message: `Do you want to update all files to version ${nextVersion}?`,
node-raven-js-3.22.1+dfsg/scripts/deploy.js-59-    type: 'confirm',
##############################################
node-raven-js-3.22.1+dfsg/scripts/deploy.js-119-
node-raven-js-3.22.1+dfsg/scripts/deploy.js:120:  console.log(`\nāœ” Deployment of Raven.js ${nextVersion} complete!\n`);
node-raven-js-3.22.1+dfsg/scripts/deploy.js-121-})();
##############################################
node-raven-js-3.22.1+dfsg/scripts/deploy.js-171-    /(VERSION: .)\d+\.\d+\.\d+(.)/g,
node-raven-js-3.22.1+dfsg/scripts/deploy.js:172:    `$1${nextVersion}$2`
node-raven-js-3.22.1+dfsg/scripts/deploy.js-173-  );
##############################################
node-raven-js-3.22.1+dfsg/scripts/deploy.js-182-    /(sentry_client: .raven-js\/)\d+\.\d+\.\d+(.)/g,
node-raven-js-3.22.1+dfsg/scripts/deploy.js:183:    `$1${nextVersion}$2`
node-raven-js-3.22.1+dfsg/scripts/deploy.js-184-  );
##############################################
node-raven-js-3.22.1+dfsg/scripts/deploy.js-205-function commitChanges(nextVersion) {
node-raven-js-3.22.1+dfsg/scripts/deploy.js:206:  execCommand(`git add -A && git commit -am "${nextVersion}"`);
node-raven-js-3.22.1+dfsg/scripts/deploy.js-207-  console.log('āœ” Changes committed');
##############################################
node-raven-js-3.22.1+dfsg/scripts/deploy.js-210-function createTag(nextVersion) {
node-raven-js-3.22.1+dfsg/scripts/deploy.js:211:  execCommand(`git tag -a ${nextVersion} -m "Version ${nextVersion}"`);
node-raven-js-3.22.1+dfsg/scripts/deploy.js-212-  console.log('āœ” Tag created');