UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.18 kB
/** * **ginkgo** - A Modern Testing Framework for Go * * @domain `onsi.github.io/ginkgo` * @programs `ginkgo` * @version `2.23.4` (15 versions available) * @versions From newest version to oldest. * * @install `launchpad install ginkgo` * @name `ginkgo` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.ginkgo * // Or access via domain * const samePkg = pantry.onsigithubioginkgo * console.log(pkg === samePkg) // true * console.log(pkg.name) // "ginkgo" * console.log(pkg.description) // "A Modern Testing Framework for Go" * console.log(pkg.programs) // ["ginkgo"] * console.log(pkg.versions[0]) // "2.23.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/onsi-github-io/ginkgo.md * @see https://ts-pkgx.netlify.app/usage */ export declare const ginkgoPackage: { /** * The display name of this package. */ name: 'ginkgo'; /** * The canonical domain name for this package. */ domain: 'onsi.github.io/ginkgo'; /** * Brief description of what this package does. */ description: 'A Modern Testing Framework for Go'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/onsi.github.io/ginkgo/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install ginkgo'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['ginkgo']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.23.4', '2.23.3', '2.23.2', '2.23.1', '2.23.0', '2.22.2', '2.22.1', '2.22.0', '2.21.0', '2.20.2', '2.20.1', '2.20.0', '2.19.1', '2.19.0', '2.18.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type GinkgoPackage = typeof ginkgoPackage