{"id":21174436,"url":"https://github.com/vinicamposdev/ts-coverage-poc","last_synced_at":"2025-03-14T18:19:17.411Z","repository":{"id":153730391,"uuid":"630460069","full_name":"vinicamposdev/ts-coverage-poc","owner":"vinicamposdev","description":null,"archived":false,"fork":false,"pushed_at":"2023-04-21T19:07:28.000Z","size":220,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-21T11:21:51.779Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vinicamposdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-04-20T12:33:49.000Z","updated_at":"2023-04-20T12:33:58.000Z","dependencies_parsed_at":"2023-09-03T02:07:56.690Z","dependency_job_id":null,"html_url":"https://github.com/vinicamposdev/ts-coverage-poc","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":"ryansonshine/typescript-npm-package-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinicamposdev%2Fts-coverage-poc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinicamposdev%2Fts-coverage-poc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinicamposdev%2Fts-coverage-poc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinicamposdev%2Fts-coverage-poc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vinicamposdev","download_url":"https://codeload.github.com/vinicamposdev/ts-coverage-poc/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243624103,"owners_count":20321029,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-20T16:54:37.787Z","updated_at":"2025-03-14T18:19:17.393Z","avatar_url":"https://github.com/vinicamposdev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# typescript-npm-package-template\n\n\u003e Template to kickstart creating a Node.js module using TypeScript and VSCode\n\nInspired by [node-module-boilerplate](https://github.com/sindresorhus/node-module-boilerplate)\n\n## Features\n\n- [Semantic Release](https://github.com/semantic-release/semantic-release)\n- [Issue Templates](https://github.com/ryansonshine/typescript-npm-package-template/tree/main/.github/ISSUE_TEMPLATE)\n- [GitHub Actions](https://github.com/ryansonshine/typescript-npm-package-template/tree/main/.github/workflows)\n- [Codecov](https://about.codecov.io/)\n- [VSCode Launch Configurations](https://github.com/ryansonshine/typescript-npm-package-template/blob/main/.vscode/launch.json)\n- [TypeScript](https://www.typescriptlang.org/)\n- [Husky](https://github.com/typicode/husky)\n- [Lint Staged](https://github.com/okonet/lint-staged)\n- [Commitizen](https://github.com/search?q=commitizen)\n- [Jest](https://jestjs.io/)\n- [ESLint](https://eslint.org/)\n- [Prettier](https://prettier.io/)\n\n## Getting started\n\n### Set up your repository\n\n**Click the \"Use this template\" button.**\n\nAlternatively, create a new directory and then run:\n\n```bash\ncurl -fsSL https://github.com/ryansonshine/typescript-npm-package-template/archive/main.tar.gz | tar -xz --strip-components=1\n```\n\nReplace `FULL_NAME`, `GITHUB_USER`, and `REPO_NAME` in the script below with your own details to personalize your new package:\n\n```bash\nFULL_NAME=\"John Smith\"\nGITHUB_USER=\"johnsmith\"\nREPO_NAME=\"my-cool-package\"\nsed -i.mybak \"s/\\([\\/\\\"]\\)(ryansonshine)/$GITHUB_USER/g; s/typescript-npm-package-template\\|my-package-name/$REPO_NAME/g; s/Ryan Sonshine/$FULL_NAME/g\" package.json package-lock.json README.md\nrm *.mybak\n```\n\n### Add NPM Token\n\nAdd your npm token to your GitHub repository secrets as `NPM_TOKEN`.\n\n### Add Codecov integration\n\nEnable the Codecov GitHub App [here](https://github.com/apps/codecov).\n\n**Remove everything from here and above**\n\n---\n\n# my-package-name\n\n[![npm package][npm-img]][npm-url]\n[![Build Status][build-img]][build-url]\n[![Downloads][downloads-img]][downloads-url]\n[![Issues][issues-img]][issues-url]\n[![Code Coverage][codecov-img]][codecov-url]\n[![Commitizen Friendly][commitizen-img]][commitizen-url]\n[![Semantic Release][semantic-release-img]][semantic-release-url]\n\n\u003e My awesome module\n\n## Install\n\n```bash\nnpm install my-package-name\n```\n\n## Usage\n\n```ts\nimport { myPackage } from 'my-package-name';\n\nmyPackage('hello');\n//=\u003e 'hello from my package'\n```\n\n## API\n\n### myPackage(input, options?)\n\n#### input\n\nType: `string`\n\nLorem ipsum.\n\n#### options\n\nType: `object`\n\n##### postfix\n\nType: `string`\nDefault: `rainbows`\n\nLorem ipsum.\n\n[build-img]:https://github.com/ryansonshine/typescript-npm-package-template/actions/workflows/release.yml/badge.svg\n[build-url]:https://github.com/ryansonshine/typescript-npm-package-template/actions/workflows/release.yml\n[downloads-img]:https://img.shields.io/npm/dt/typescript-npm-package-template\n[downloads-url]:https://www.npmtrends.com/typescript-npm-package-template\n[npm-img]:https://img.shields.io/npm/v/typescript-npm-package-template\n[npm-url]:https://www.npmjs.com/package/typescript-npm-package-template\n[issues-img]:https://img.shields.io/github/issues/ryansonshine/typescript-npm-package-template\n[issues-url]:https://github.com/ryansonshine/typescript-npm-package-template/issues\n[codecov-img]:https://codecov.io/gh/ryansonshine/typescript-npm-package-template/branch/main/graph/badge.svg\n[codecov-url]:https://codecov.io/gh/ryansonshine/typescript-npm-package-template\n[semantic-release-img]:https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg\n[semantic-release-url]:https://github.com/semantic-release/semantic-release\n[commitizen-img]:https://img.shields.io/badge/commitizen-friendly-brightgreen.svg\n[commitizen-url]:http://commitizen.github.io/cz-cli/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvinicamposdev%2Fts-coverage-poc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvinicamposdev%2Fts-coverage-poc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvinicamposdev%2Fts-coverage-poc/lists"}