gitextract_bisxif4y/ ├── .eslintrc.json ├── .github/ │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ └── bug_report.md │ ├── ISSUE_TEMPLATE.md │ ├── no-response.yml │ ├── oliver.yml │ └── workflows/ │ ├── commits.yml │ ├── node.js.yml │ ├── release.yml │ ├── stale.yml │ └── website.yml ├── .gitignore ├── .jshintrc ├── .npmignore ├── .npmrc ├── .prettierrc.json ├── .releaserc ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── README.md ├── TODO.md ├── bin/ │ └── nodemon.js ├── commitlint.config.js ├── doc/ │ ├── arch.md │ ├── cli/ │ │ ├── authors.txt │ │ ├── config.txt │ │ ├── help.txt │ │ ├── logo.txt │ │ ├── options.txt │ │ ├── topics.txt │ │ ├── usage.txt │ │ └── whoami.txt │ ├── events.md │ ├── option-parsing-logic.md │ ├── requireable.md │ ├── rules.md │ └── sample-nodemon.md ├── faq.md ├── index.d.ts ├── jsconfig.json ├── lib/ │ ├── cli/ │ │ ├── index.js │ │ └── parse.js │ ├── config/ │ │ ├── command.js │ │ ├── defaults.js │ │ ├── exec.js │ │ ├── index.js │ │ └── load.js │ ├── help/ │ │ └── index.js │ ├── index.js │ ├── monitor/ │ │ ├── index.js │ │ ├── match.js │ │ ├── run.js │ │ ├── signals.js │ │ └── watch.js │ ├── nodemon.js │ ├── rules/ │ │ ├── add.js │ │ ├── index.js │ │ └── parse.js │ ├── spawn.js │ ├── utils/ │ │ ├── bus.js │ │ ├── clone.js │ │ ├── colour.js │ │ ├── index.js │ │ ├── log.js │ │ └── merge.js │ └── version.js ├── package.json ├── test/ │ ├── cli/ │ │ ├── exec.test.js │ │ └── parse.test.js │ ├── config/ │ │ ├── env.test.js │ │ ├── load-logging.test.js │ │ └── load.test.js │ ├── docker.sh │ ├── events/ │ │ ├── complete.test.js │ │ └── scripts.test.js │ ├── fixtures/ │ │ ├── .dotfile │ │ ├── .dotfolder/ │ │ │ ├── .nested_dotfile.js │ │ │ ├── second.js │ │ │ └── some_file.js │ │ ├── 1246/ │ │ │ ├── app/ │ │ │ │ └── index.js │ │ │ └── watching/ │ │ │ └── index.js │ │ ├── app with spaces.js │ │ ├── app.coffee │ │ ├── app.js │ │ ├── comments │ │ ├── configs/ │ │ │ ├── public-star.json │ │ │ ├── top-level.json │ │ │ ├── watch-options.json │ │ │ ├── watch-relative-filter.json │ │ │ └── watch-relative.json │ │ ├── default │ │ ├── default.json │ │ ├── env.js │ │ ├── events/ │ │ │ ├── env.js │ │ │ └── nodemon.json │ │ ├── global/ │ │ │ └── nodemon.json │ │ ├── hello.ls │ │ ├── hello.py │ │ ├── help.txt │ │ ├── legacy/ │ │ │ └── .nodemonignore │ │ ├── log.coffee │ │ ├── nodemon.json │ │ ├── package.json │ │ ├── packages/ │ │ │ ├── browserify/ │ │ │ │ └── package.json │ │ │ ├── express4/ │ │ │ │ └── package.json │ │ │ ├── main-and-index/ │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── server.js │ │ │ ├── main-and-start/ │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── nodemon-settings-and-package-json-settings/ │ │ │ │ ├── nodemon.json │ │ │ │ └── package.json │ │ │ ├── package-json-settings/ │ │ │ │ └── package.json │ │ │ ├── start/ │ │ │ │ └── package.json │ │ │ ├── start-and-package-json-settings/ │ │ │ │ └── package.json │ │ │ ├── start-and-settings/ │ │ │ │ ├── nodemon.json │ │ │ │ └── package.json │ │ │ └── start-ignored/ │ │ │ └── package.json │ │ ├── regexp │ │ ├── repl.js │ │ ├── sigint.js │ │ ├── simple │ │ ├── simple.json │ │ ├── super-legacy/ │ │ │ └── nodemon-ignore │ │ └── watch-count/ │ │ ├── index.js │ │ └── lib/ │ │ ├── 1.js │ │ ├── 2.js │ │ ├── 3.js │ │ ├── 4.js │ │ └── 5.js │ ├── fork/ │ │ ├── change-detect.test.js │ │ ├── config.test.js │ │ ├── run-mac-only.test.js │ │ ├── run.test.js │ │ └── watch-restart.test.js │ ├── help/ │ │ └── help.test.js │ ├── lib/ │ │ ├── events.test.js │ │ ├── require-restartable.test.js │ │ └── require.test.js │ ├── misc/ │ │ ├── listeners.test.js │ │ └── sigint.test.js │ ├── mocha.opts │ ├── monitor/ │ │ ├── count.test.js │ │ ├── ignore.test.js │ │ ├── match.test.js │ │ ├── run.test.js │ │ ├── watch-restart.test.js │ │ └── watch.test.js │ ├── rules/ │ │ └── index.test.js │ ├── utils/ │ │ ├── colour.test.js │ │ ├── log.test.js │ │ ├── merge.test.js │ │ └── stringify.test.js │ └── utils.js └── website/ ├── index.html ├── oc.jq ├── oc.js └── style.css