├── .github ├── release.yml └── workflows │ ├── build.yml │ ├── npm-publish.yml │ └── release.yml ├── .gitignore ├── .idea ├── .gitignore ├── allure-npm.iml ├── checkstyle-idea.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE ├── README.md ├── bin └── allure ├── fetch-source.ps1 ├── fetch-source.sh ├── index.js ├── package.json └── test-data ├── directory with space └── a-result.json └── simple └── a-result.json /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-npm/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-npm/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-npm/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-npm/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-npm/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-npm/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/allure-npm.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-npm/HEAD/.idea/allure-npm.iml -------------------------------------------------------------------------------- /.idea/checkstyle-idea.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-npm/HEAD/.idea/checkstyle-idea.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-npm/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-npm/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-npm/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-npm/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-npm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-npm/HEAD/README.md -------------------------------------------------------------------------------- /bin/allure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-npm/HEAD/bin/allure -------------------------------------------------------------------------------- /fetch-source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-npm/HEAD/fetch-source.ps1 -------------------------------------------------------------------------------- /fetch-source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-npm/HEAD/fetch-source.sh -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-npm/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-npm/HEAD/package.json -------------------------------------------------------------------------------- /test-data/directory with space/a-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-npm/HEAD/test-data/directory with space/a-result.json -------------------------------------------------------------------------------- /test-data/simple/a-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-npm/HEAD/test-data/simple/a-result.json --------------------------------------------------------------------------------