{"id":14483546,"url":"https://github.com/pgmanutd/node-talisman","last_synced_at":"2025-08-30T04:31:28.400Z","repository":{"id":34522904,"uuid":"179884193","full_name":"pgmanutd/node-talisman","owner":"pgmanutd","description":"👌 By hooking into the pre-push hook provided by Git, Talisman validates the outgoing changeset for things that look suspicious - such as authorization tokens and private keys.","archived":false,"fork":false,"pushed_at":"2024-01-25T01:05:53.000Z","size":4401,"stargazers_count":10,"open_issues_count":21,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-12-02T04:28:36.737Z","etag":null,"topics":["authorization","authorization-tokens","authorized-keys","cli","javascript","node-talisman","private-keys","ssh-keys","talisman","thoughtworks","typescript"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/node-talisman","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/pgmanutd.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2019-04-06T20:39:13.000Z","updated_at":"2024-02-08T18:08:02.000Z","dependencies_parsed_at":"2024-01-25T02:25:30.441Z","dependency_job_id":"18069147-80ed-441c-ab5f-709bec859834","html_url":"https://github.com/pgmanutd/node-talisman","commit_stats":{"total_commits":152,"total_committers":3,"mean_commits":"50.666666666666664","dds":0.2763157894736842,"last_synced_commit":"94d67cd757bfe45a49363000e1a96300174a40cf"},"previous_names":[],"tags_count":48,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgmanutd%2Fnode-talisman","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgmanutd%2Fnode-talisman/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgmanutd%2Fnode-talisman/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgmanutd%2Fnode-talisman/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pgmanutd","download_url":"https://codeload.github.com/pgmanutd/node-talisman/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":231443791,"owners_count":18377602,"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":["authorization","authorization-tokens","authorized-keys","cli","javascript","node-talisman","private-keys","ssh-keys","talisman","thoughtworks","typescript"],"created_at":"2024-09-03T00:01:51.236Z","updated_at":"2025-08-30T04:31:28.388Z","avatar_url":"https://github.com/pgmanutd.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"# node-talisman \u0026middot; [![npm](https://img.shields.io/npm/v/node-talisman.svg)](https://www.npmjs.com/package/node-talisman) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com) [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/pgmanutd/node-talisman/blob/master/LICENSE) [![CircleCI](https://circleci.com/gh/pgmanutd/node-talisman.svg?style=shield)](https://circleci.com/gh/pgmanutd/node-talisman) [![Coverage Status](https://coveralls.io/repos/github/pgmanutd/node-talisman/badge.svg?branch=master)](https://coveralls.io/github/pgmanutd/node-talisman?branch=master) [![Known Vulnerabilities](https://snyk.io/test/github/pgmanutd/node-talisman/badge.svg?targetFile=package.json)](https://snyk.io/test/github/pgmanutd/node-talisman?targetFile=package.json)\n\nA npm package for running Thoughtwork's [Talisman](https://github.com/thoughtworks/talisman) tool as a CLI.\n\n## Requires\n\n- Node 12+\n\n## Features\n\n- Supports [Talisman v1.37.0](https://github.com/thoughtworks/talisman/releases/tag/v1.37.0).\n- Linux, MacOS and Windows supported.\n\n## Installation\n\n1. Add package\n\n   ```sh\n   npm install --save-dev node-talisman\n   ```\n\n2. Add a script to package.json\n\n   ```js\n   {\n     \"scripts\" : {\n       \"node-talisman\": \"node-talisman\",\n       ...\n     }\n     ...\n   }\n   ```\n\n3. Use it as you like :wink:\n\n   **Using above script:**\n\n   ```sh\n   npm run node-talisman -- --githook [pre-commit|pre-push]\n\n   # finds all .js and .ts files in the current directory (recursively)\n   npm run node-talisman -- --pattern=\"./**/*.{js,ts}\"\n   ```\n\n   **Using npx:**\n\n   ```sh\n   npx node-talisman --githook [pre-commit|pre-push]\n\n   # finds all .js and .ts files in the current directory (recursively)\n   npx node-talisman --pattern=\"./**/*.{js,ts}\"\n   ```\n\n   For more details checkout [Talisman as a CLI utility](https://github.com/thoughtworks/talisman#talisman-as-a-cli-utility).\n\n## Contributing Guide\n\nAnyone can help to make this project better - check out the [Contributing Guide](./.github/CONTRIBUTING.md)!\n\n## Code of Conduct\n\nPlease adhere to [Code of Conduct](./.github/CODE_OF_CONDUCT.md).\n\n## Issues\n\nPlease make sure to read the [Issue Reporting Guidelines](./.github/ISSUE_TEMPLATE.md) before opening an issue.\n\n## Changelog\n\nDetailed changes for each release are documented in the [release notes](https://github.com/pgmanutd/node-talisman/releases).\n\n## License\n\nLicensed under the [MIT licensed](./LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpgmanutd%2Fnode-talisman","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpgmanutd%2Fnode-talisman","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpgmanutd%2Fnode-talisman/lists"}