├── .editorconfig ├── .github ├── FUNDING.yml ├── dependabot.yml ├── linters │ ├── .checkov.yml │ ├── .commit-lint.yml │ ├── .grype.yaml │ ├── .lychee.toml │ ├── .markdown-lint.yml │ ├── .mega-linter.yml │ └── .yamllint.yml ├── matrix-publish.json ├── matrix-test.json └── workflows │ ├── pull_request_target.yml │ └── push.yml ├── .gitignore ├── .npmignore ├── .pandoc.yml ├── .release.json ├── .taprc.yml ├── LICENSE ├── Makefile ├── README.md ├── colophon.yml ├── docker-compose.yml ├── docs ├── README.md └── README.template ├── lib ├── index.d.ts └── index.js ├── package.json └── test └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/linters/.checkov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/.github/linters/.checkov.yml -------------------------------------------------------------------------------- /.github/linters/.commit-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/.github/linters/.commit-lint.yml -------------------------------------------------------------------------------- /.github/linters/.grype.yaml: -------------------------------------------------------------------------------- 1 | check-for-app-update: false 2 | exclude: 3 | - '**/package-lock.json' 4 | -------------------------------------------------------------------------------- /.github/linters/.lychee.toml: -------------------------------------------------------------------------------- 1 | exclude_path = [".github"] 2 | -------------------------------------------------------------------------------- /.github/linters/.markdown-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/.github/linters/.markdown-lint.yml -------------------------------------------------------------------------------- /.github/linters/.mega-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/.github/linters/.mega-linter.yml -------------------------------------------------------------------------------- /.github/linters/.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/.github/linters/.yamllint.yml -------------------------------------------------------------------------------- /.github/matrix-publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/.github/matrix-publish.json -------------------------------------------------------------------------------- /.github/matrix-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/.github/matrix-test.json -------------------------------------------------------------------------------- /.github/workflows/pull_request_target.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/.github/workflows/pull_request_target.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/.npmignore -------------------------------------------------------------------------------- /.pandoc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/.pandoc.yml -------------------------------------------------------------------------------- /.release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/.release.json -------------------------------------------------------------------------------- /.taprc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/.taprc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/README.md -------------------------------------------------------------------------------- /colophon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/colophon.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/README.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/docs/README.template -------------------------------------------------------------------------------- /lib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/lib/index.d.ts -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/package.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-glob-promise/HEAD/test/index.js --------------------------------------------------------------------------------