ts-pkgx
Version:
A library & CLI for managing packages
54 lines • 1.81 kB
TypeScript
/**
* **googletest** - GoogleTest - Google Testing and Mocking Framework
*
* @domain `google.com/googletest`
* @version `1.17.0` (6 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +google.com/googletest -- $SHELL -i`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.googlecomgoogletest
* console.log(pkg.name) // "googletest"
* console.log(pkg.description) // "GoogleTest - Google Testing and Mocking Framework"
* console.log(pkg.versions[0]) // "1.17.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/google-com/googletest.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const googlecomgoogletestPackage: {
/**
* The display name of this package.
*/
name: 'googletest';
/**
* The canonical domain name for this package.
*/
domain: 'google.com/googletest';
/**
* Brief description of what this package does.
*/
description: 'GoogleTest - Google Testing and Mocking Framework';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/google.com/googletest/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +google.com/googletest -- $SHELL -i';
programs: readonly [];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.17.0', '1.16.0', '1.15.2', '1.15.0', '1.14.0', '1.13.0'];
aliases: readonly []
};
export type GooglecomgoogletestPackage = typeof googlecomgoogletestPackage