ts-pkgx
Version:
A library & CLI for managing packages
76 lines • 2.91 kB
TypeScript
/**
* **allure** - Allure Report is a flexible, lightweight multi-language test reporting tool. It provides clear graphical reports and allows everyone involved in the development process to extract the maximum of information from the everyday testing process
*
* @domain `github.com/allure-framework/allure2`
* @programs `allure`
* @version `2.34.1` (11 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install allure`
* @name `allure`
* @dependencies `openjdk.org`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.allure
* // Or access via domain
* const samePkg = pantry.githubcomallureframeworkallure2
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "allure"
* console.log(pkg.description) // "Allure Report is a flexible, lightweight multi-..."
* console.log(pkg.programs) // ["allure"]
* console.log(pkg.versions[0]) // "2.34.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/allure-framework/allure2.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const allurePackage: {
/**
* The display name of this package.
*/
name: 'allure';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/allure-framework/allure2';
/**
* Brief description of what this package does.
*/
description: 'Allure Report is a flexible, lightweight multi-language test reporting tool. It provides clear graphical reports and allows everyone involved in the development process to extract the maximum of information from the everyday testing process';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/allure-framework/allure2/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install allure';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['allure'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['openjdk.org'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.34.1', '2.34.0', '2.33.0', '2.32.2', '2.32.0', '2.31.0', '2.30.0', '2.29.0', '2.28.0', '2.27.0', '2.26.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) allure -- $SHELL -i';
launchpadInstallCommand: 'launchpad install allure'
};
export type AllurePackage = typeof allurePackage