UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.64 kB
/** * **pytest** - The pytest framework makes it easy to write small tests, yet scales to support complex functional testing * * @domain `pytest.org` * @programs `pytest` * @version `8.4.1` (27 versions available) * @versions From newest version to oldest. * * @install `launchpad install pytest` * @name `pytest` * @dependencies `pkgx.sh^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.pytest * // Or access via domain * const samePkg = pantry.pytestorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "pytest" * console.log(pkg.description) // "The pytest framework makes it easy to write sma..." * console.log(pkg.programs) // ["pytest"] * console.log(pkg.versions[0]) // "8.4.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/pytest-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const pytestPackage: { /** * The display name of this package. */ name: 'pytest'; /** * The canonical domain name for this package. */ domain: 'pytest.org'; /** * Brief description of what this package does. */ description: 'The pytest framework makes it easy to write small tests, yet scales to support complex functional testing'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pytest.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install pytest'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pytest']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['pkgx.sh^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['8.4.1', '8.4.0', '8.3.5', '8.3.4', '8.3.3', '8.3.2', '8.3.1', '8.3.0', '8.2.2', '8.2.1', '8.2.0', '8.1.2', '8.1.1', '8.1.0', '8.0.2', '8.0.1', '8.0.0', '7.4.4', '7.4.3', '7.4.2', '7.4.1', '7.4.0', '7.3.2', '7.3.1', '7.3.0', '7.2.2', '7.1.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) pytest -- $SHELL -i'; launchpadInstallCommand: 'launchpad install pytest' }; export type PytestPackage = typeof pytestPackage