├── .editorconfig ├── .github ├── FUNDING.yml ├── dependabot.yml ├── linters │ ├── .checkov.yml │ ├── .commit-lint.yml │ ├── .grype.yaml │ ├── .lychee.toml │ ├── .markdown-lint.yml │ ├── .mega-linter.yml │ └── .yamllint.yml ├── test-matrix.json └── workflows │ ├── pull_request_target.yml │ └── push.yml ├── .gitignore ├── .npmignore ├── .pandoc.yml ├── .release.json ├── .semantic.json ├── .taprc.yml ├── LICENSE ├── Makefile ├── README.md ├── colophon.yml ├── docker-compose.yml ├── docs ├── README.md └── README.template ├── package.json ├── src └── index.js └── test └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-metalsmith-paths/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-metalsmith-paths/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-metalsmith-paths/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/linters/.checkov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-metalsmith-paths/HEAD/.github/linters/.checkov.yml -------------------------------------------------------------------------------- /.github/linters/.commit-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-metalsmith-paths/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-metalsmith-paths/HEAD/.github/linters/.markdown-lint.yml -------------------------------------------------------------------------------- /.github/linters/.mega-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-metalsmith-paths/HEAD/.github/linters/.mega-linter.yml -------------------------------------------------------------------------------- /.github/linters/.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-metalsmith-paths/HEAD/.github/linters/.yamllint.yml -------------------------------------------------------------------------------- /.github/test-matrix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-metalsmith-paths/HEAD/.github/test-matrix.json -------------------------------------------------------------------------------- /.github/workflows/pull_request_target.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-metalsmith-paths/HEAD/.github/workflows/pull_request_target.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-metalsmith-paths/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-metalsmith-paths/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-metalsmith-paths/HEAD/.npmignore -------------------------------------------------------------------------------- /.pandoc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-metalsmith-paths/HEAD/.pandoc.yml -------------------------------------------------------------------------------- /.release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-metalsmith-paths/HEAD/.release.json -------------------------------------------------------------------------------- /.semantic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-metalsmith-paths/HEAD/.semantic.json -------------------------------------------------------------------------------- /.taprc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-metalsmith-paths/HEAD/.taprc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-metalsmith-paths/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-metalsmith-paths/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-metalsmith-paths/HEAD/README.md -------------------------------------------------------------------------------- /colophon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-metalsmith-paths/HEAD/colophon.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-metalsmith-paths/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-metalsmith-paths/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/README.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-metalsmith-paths/HEAD/docs/README.template -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-metalsmith-paths/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-metalsmith-paths/HEAD/src/index.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/node-metalsmith-paths/HEAD/test/index.js --------------------------------------------------------------------------------