Звіт у форматі JSON машиночитний
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 1539,
"has_wiki": true,
"homepage": null,
"languages": {
"JavaScript": 21608
},
"pushed_at": "2026-07-21T12:32:23Z",
"created_at": "2013-06-18T10:53:25Z",
"owner_type": "Organization",
"updated_at": "2026-07-21T12:33:38Z",
"description": "Hash passwords the right way (Argon2 & bcrypt support)",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "master",
"license_spdx_raw": "MIT",
"primary_language": "JavaScript",
"significant_languages": [
"JavaScript"
]
},
"owner": {
"blog": "http://jscommunity.github.io/",
"name": null,
"type": "Organization",
"login": "JsCommunity",
"company": null,
"location": null,
"followers": 5,
"avatar_url": "https://avatars.githubusercontent.com/u/18125369?v=4",
"created_at": "2016-03-28T19:50:28Z",
"is_verified": null,
"public_repos": 33,
"account_age_days": 3774
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.13.0",
"kind": "minor",
"published_at": "2026-07-21T11:40:10Z"
},
{
"tag": "v0.12.0",
"kind": "minor",
"published_at": "2025-01-15T16:55:19Z"
},
{
"tag": "v0.11.1",
"kind": "patch",
"published_at": "2022-07-06T07:32:10Z"
},
{
"tag": "v0.11.0",
"kind": "minor",
"published_at": "2022-03-02T08:01:06Z"
},
{
"tag": "v0.10.0",
"kind": "minor",
"published_at": "2020-12-11T08:47:35Z"
},
{
"tag": "v0.9.0",
"kind": "minor",
"published_at": "2020-12-07T11:56:46Z"
},
{
"tag": "v0.8.0",
"kind": "minor",
"published_at": "2020-01-02T13:17:38Z"
},
{
"tag": "v0.7.1",
"kind": "patch",
"published_at": "2018-05-24T12:40:39Z"
},
{
"tag": "v0.7.0",
"kind": "minor",
"published_at": "2018-05-14T09:37:43Z"
},
{
"tag": "v0.6.2",
"kind": "patch",
"published_at": "2017-07-06T15:25:22Z"
},
{
"tag": "v0.6.1",
"kind": "patch",
"published_at": "2017-03-01T08:59:59Z"
},
{
"tag": "v0.6.0",
"kind": "minor",
"published_at": "2017-01-02T11:29:51Z"
},
{
"tag": "v0.5.1",
"kind": "patch",
"published_at": "2016-06-22T08:43:22Z"
},
{
"tag": "v0.5.0",
"kind": "minor",
"published_at": "2016-04-25T08:46:45Z"
},
{
"tag": "v0.4.4",
"kind": "patch",
"published_at": "2015-06-09T13:01:28Z"
},
{
"tag": "v0.4.3",
"kind": "patch",
"published_at": "2015-06-09T09:46:38Z"
},
{
"tag": "v0.4.2",
"kind": "patch",
"published_at": "2015-01-21T09:47:57Z"
},
{
"tag": "v0.4.1",
"kind": "patch",
"published_at": "2014-10-07T10:44:12Z"
},
{
"tag": "v0.4.0",
"kind": "minor",
"published_at": "2014-10-07T10:42:57Z"
},
{
"tag": "v0.3.7",
"kind": "patch",
"published_at": "2014-10-05T11:13:06Z"
},
{
"tag": "v0.3.6",
"kind": "patch",
"published_at": "2014-06-09T13:28:17Z"
},
{
"tag": "v0.3.5",
"kind": "patch",
"published_at": "2014-05-23T13:30:21Z"
},
{
"tag": "v0.3.4",
"kind": "patch",
"published_at": "2014-05-23T13:24:49Z"
},
{
"tag": "v0.3.3",
"kind": "patch",
"published_at": "2014-05-22T09:26:52Z"
},
{
"tag": "v0.3.2",
"kind": "patch",
"published_at": "2014-05-22T09:18:20Z"
},
{
"tag": "v0.3.1",
"kind": "patch",
"published_at": "2014-04-03T09:02:47Z"
},
{
"tag": "v0.3.0",
"kind": "minor",
"published_at": "2014-04-03T08:38:06Z"
}
],
"recent_commits": [
{
"oid": "9f5807bbac9a429427e827a13cecb223a790c911",
"body": "Drop pre-ES6 workarounds no longer needed now that the engines field\nrequires Node >=16.17: module-scoping IIFEs around require() calls,\nthe manual arguments/apply-based async wrapper, and module.parent.\nUse arrow functions, template literals, destructuring, async/await,\nand require.main === module instead. cli.js's main() is now a plain\nasync function, so validation errors reject instead of throwing\nsynchronously; cli.test.js is updated to match.",
"is_bot": false,
"headline": "refactor: modernize index.js and cli.js for Node >=16.17",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2026-07-21T12:32:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d3227b7319671ebf16b8fe86927b9b6b6a3e8a9e",
"body": "…ting\n\nBcrypt truncates passwords past 72 bytes, so two different passwords\nsharing that prefix would hash and verify identically. hash() and\nverify() now throw instead of letting that go unnoticed.",
"is_bot": false,
"headline": "fix: reject bcrypt passwords over 72 bytes instead of silently trunca…",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2026-07-21T11:51:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "35a1ca77b29bfdee2c65e037126be882add524d8",
"body": null,
"is_bot": false,
"headline": "0.13.0",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2026-07-21T11:40:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e48443a52428052db10df48ae30361b7054f4d5b",
"body": "CI failed on Node 16.17.0 (the oldest version in the matrix, and the\nvery first Node release to ever ship node:test — it was backported\nthere as experimental): \"can work with callback\" under verify()\ncrashed with \"TypeError: done is not a function\", triggered by a\nwarning that a *different*, already\n[…]\n unaffected on 18-24.\n\nFixed by switching the three done()-based tests to return Promises\ninstead, which node:test has always handled reliably.\n\nCo-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix(test): stop using node:test's done() callback for async tests",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2026-07-21T11:36:14Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "cf980a6963b2d92c8221434323f0ceb9245cd400",
"body": "- remove the dead Travis CI badge (replaced by the new GitHub Actions\n one) and the stale promise-toolbox/Node-0.12 paragraph\n- fix a wrong function name (needRehash -> needsRehash), an undefined\n `err` variable in the verify() example, and a few typos\n- fix dead/legacy links: nodejs.org over http\n[…]\nte being a shipped feature\n\nAlso drops the stale /.nyc_output/ entry from .gitignore, left over\nfrom before the tap/nyc -> node:test migration.\n\nCo-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs(README): fix stale content, dead links, and document the CLI",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2026-07-21T09:49:00Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "444a3ab11acfb77ae4ea7d978523f9e54d5a89fb",
"body": "exec-promise is inlined (about 15 lines), dropping its outdated\nchalk@1 dependency chain along with it.\n\nAlso fixes two yargs-related bugs surfaced while adding cli.js test\ncoverage (it had none before this commit):\n\n- --help/--version called process.exit() directly during .parse(),\n before main() \n[…]\n from\nyargs 17, caused by redefining its built-in --help/--version keys via\n.options(); switched to .alias() instead, as yargs itself suggests.\n\nCo-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix(cli): drop exec-promise, fix yargs exit and duplicate-output bugs",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2026-07-21T09:48:10Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "ce2910223f5c2b77cd4a60c2eb83cab06221ee87",
"body": "…tom options\n\npromise-toolbox was only used for two things, both trivial to inline:\n- asCallback(), a 4-line helper\n- promisifyAll(bcryptjs), which was actually a no-op: bcryptjs already\n returns native promises when called without a callback\n\nWhile adding test coverage for needsRehash(), found tha\n[…]\nomes a plain pass-through to argon2.needsRehash().\nThis avoids hardcoding a copy of argon2's own default security\nparameters anywhere in hashy.\n\nCo-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: inline promise-toolbox and fix argon2 needsRehash() ignoring cus…",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2026-07-21T09:46:52Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "fd4959256c7e6544b369613075a33e8571ebf93a",
"body": "… promise-toolbox\n\n- argon2 0.41.1 -> 0.45.0\n- bcryptjs 2.4.3 -> 3.0.3 (no engines restriction, still fine on\n Node 16.17)\n- yargs 16.2.0 -> 17.7.2, the last major still supporting Node 16;\n 18.x requires Node >=20.19/22.12 so it's skipped for now\n- exec-promise and promise-toolbox are no longer needed, they're\n inlined in the following commits\n- fixes all `npm audit` findings (all in transitive dev dependencies)\n\nCo-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "chore(deps): update argon2, bcryptjs and yargs; drop exec-promise and…",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2026-07-21T09:45:03Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "43b6ae490241aada7540b209ed11ce6abcff1ac7",
"body": "Runs the test suite across the Node versions we still support (16.17\nthrough 24) plus lint/format checks, on every push and pull request.\nThere was previously no CI running at all.\n\nCo-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "ci: add GitHub Actions workflow",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2026-07-21T09:44:08Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "7267001600f54c7d71ae13fd2055289c6b67bd7d",
"body": "This lib now requires Node >=16.17 anyway.",
"is_bot": false,
"headline": "chore(README): remove Node 7.6 mention",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2025-01-23T17:30:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "429aa034eb349c725e69f1db36d9e4b4519e13f5",
"body": null,
"is_bot": false,
"headline": "fix(README): correctly format examples",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2025-01-23T17:29:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eafa977b270947183b457032d8736d150f6045c6",
"body": "Introduced by a323643",
"is_bot": false,
"headline": "fix(README): argon2 is the default algo",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2025-01-23T15:31:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "71bbc128a59a484c2d3077cf62c7cde6dfab81c8",
"body": null,
"is_bot": false,
"headline": "0.12.0",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2025-01-15T16:55:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "187bae702160854faccf79fc732e9e38c4f5736a",
"body": "BREAKING CHANGE: requires Node >=16.17",
"is_bot": false,
"headline": "feat: update to argon2@0.41.1",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2025-01-15T16:38:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6739388e250d607f0c641b6e9ec9df55547d5739",
"body": null,
"is_bot": false,
"headline": "chore: migrate from tap to node:test",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2025-01-15T16:38:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "070c789f69addf372e6ddcf3ff1b942ab013bff5",
"body": null,
"is_bot": false,
"headline": "chore: update husky, lint-staged & prettier",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2025-01-15T16:38:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e40731cd3aac2f5959e61adb10faafdd3d8bd850",
"body": null,
"is_bot": false,
"headline": "chore: update ESLint",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2025-01-15T15:58:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4e0e1ab7f008d6e2d64600b66e95b2b0916c50f6",
"body": null,
"is_bot": false,
"headline": "chore: remove unused Travis config",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2025-01-15T13:46:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7b7f172a076074866a0cbfabfc532d02e8e83a96",
"body": null,
"is_bot": false,
"headline": "chore: update dev deps",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2025-01-15T13:46:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "34a74d49ec703488e9835de65e1550667e6c09ce",
"body": null,
"is_bot": false,
"headline": "0.11.1",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2022-07-06T07:32:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a9eec4cb8feb6ea5f20e37e1eb67c3b42d698935",
"body": "`argon2id` is now the default since argon2@0.28.7",
"is_bot": false,
"headline": "fix: argon2id support",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2022-07-06T07:31:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d67053cb32e9e5eb6fc4365e3ba4bc4bd3778d66",
"body": null,
"is_bot": false,
"headline": "test: default hash can be verified",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2022-07-06T07:29:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4cb526912924e5bf168a9d905c637ca1918388be",
"body": null,
"is_bot": false,
"headline": "chore: update dev deps",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2022-07-06T07:25:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6018b8b248241cc84e624fbc2de610705db8acb2",
"body": null,
"is_bot": false,
"headline": "0.11.0",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2022-03-02T08:01:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8594daea403c2660fdad6628594f4299b0a673d5",
"body": "BREAKING CHANGE: hashy now requires Node >=12.",
"is_bot": false,
"headline": "chore: update to argon2@0.28",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2022-03-02T08:00:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "111d26927398e394879ca95d675a89ad08d03312",
"body": "- less dependencies\n- less magical\n- faster",
"is_bot": false,
"headline": "chore(tests): use tap instead of Jest",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2022-03-02T08:00:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cae9a582a389dcf0971287ecabb26109b0040662",
"body": null,
"is_bot": false,
"headline": "chore: update dev deps",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2022-03-01T22:23:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d309e391afaa90fb981579852ade590a649623ce",
"body": null,
"is_bot": false,
"headline": "0.10.0",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2020-12-11T08:47:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0b5bf93c756030e727ecebde5ee1140b5f0d95fd",
"body": null,
"is_bot": false,
"headline": "feat: makes argon2 non optional",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2020-12-11T08:47:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a2123e232bd0c910ebd2d4864541a43fb9e20525",
"body": null,
"is_bot": false,
"headline": "0.9.0",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2020-12-07T11:56:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "88656df8bbf21953a7d37cbbe238eb0df3f42a4b",
"body": "BREAKING: Require Node >=10",
"is_bot": false,
"headline": "feat(package): update deps",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2020-12-07T11:56:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7293bda10fc8d946ba2034d80d4830fd30be993b",
"body": null,
"is_bot": false,
"headline": "feat(README): license badge",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2020-01-02T13:23:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bcc77345da119dce4e48f720c709949dc70061e5",
"body": null,
"is_bot": false,
"headline": "0.8.0",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2020-01-02T13:17:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b8c10f5dea5e747f32dc59b6fa4be0d2dd4454fb",
"body": null,
"is_bot": false,
"headline": "chore(package): update dependencies",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2020-01-02T13:16:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e561af1abefdf4409dea175d3089906a5eac0e8c",
"body": null,
"is_bot": false,
"headline": "feat(package): require Node 8.10",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2020-01-02T13:14:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f95f39a81efce7ba7c976f4181e2f3c560243f10",
"body": null,
"is_bot": false,
"headline": "feat(README): better badges",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2020-01-02T13:13:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6c13480a1e1244ae55082820bf61806f6655979f",
"body": null,
"is_bot": false,
"headline": "chore(package): update dependencies",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2019-10-08T08:53:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2959d47153a88b4f73362820990864a68b7f87cc",
"body": null,
"is_bot": false,
"headline": "feat(README): better badges",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2019-10-08T08:47:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "20eddebab345a08912b862f40f339044d4eeaf49",
"body": null,
"is_bot": false,
"headline": "chore(package): update deps",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2019-06-06T07:36:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "971c662e8ed11dcdaef3a176510552ec1e618a8b",
"body": "Note that argon2 requires Node >=8.",
"is_bot": false,
"headline": "chore(package): requires Node >=6",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2019-02-04T09:19:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a323643061db2659e1ffd34dec0cfb7236ca5f36",
"body": null,
"is_bot": false,
"headline": "feat: makes argon2 the default algo",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2019-02-03T18:07:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7e79fd44a5c87b8af60066eaa9096fe26f0f29ba",
"body": null,
"is_bot": false,
"headline": "chore: use native implementions",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2019-02-03T17:59:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0fb62214a7085c169bacebb81c0ed72f9fc48152",
"body": null,
"is_bot": false,
"headline": "chore(package): update deps",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2019-02-02T13:01:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6d8670e32f563e3a9379199c33aa5e79acd45de4",
"body": null,
"is_bot": false,
"headline": "chore(Travis): test with Node 8, 10 and stable",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2019-02-02T12:51:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "53463dd98f9aa07b73580f60a2403bc6a54c31c4",
"body": "Related to #30",
"is_bot": false,
"headline": "chore(package): remove bcrypt optional dep",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2019-02-02T12:50:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8ae3cdc69c59448a3dc0281821a254762d457fe5",
"body": null,
"is_bot": false,
"headline": "0.7.1",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2018-05-24T12:40:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c3886933117a44db14776e6dc0c3fbdb117e5d8b",
"body": "Used by bcrypt since 2.0.0",
"is_bot": false,
"headline": "fix: add support for 2b prefix",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2018-05-24T12:40:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a6a84d21a4b30f8a25c2e3d04decdd85bdbe4461",
"body": null,
"is_bot": false,
"headline": "0.7.0",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2018-05-14T09:37:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ff02c5ac9f81c000246f4729cbfc10893ae1c88a",
"body": null,
"is_bot": false,
"headline": "chore(package): update dependencies",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2018-05-14T09:36:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b71a360a49e62a075c014fadd3d9d347da48c0a3",
"body": null,
"is_bot": false,
"headline": "chore: generators → async functions",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2018-01-12T10:47:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2b0b8485be8970578ffb4e1720871ce128b3a837",
"body": null,
"is_bot": false,
"headline": "chore(package): update dependencies",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2017-11-02T13:34:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a427529c38c7431713498d840b76cd294e74eeaf",
"body": null,
"is_bot": false,
"headline": "0.6.2",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2017-07-06T15:25:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "36fba47c8eca4bfccd9e000b9a4d5cc28eb48e58",
"body": null,
"is_bot": false,
"headline": "chore(package): update dependencies",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2017-07-06T15:24:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b400c41861289ddfad3a4803d9485ee33e106bfe",
"body": null,
"is_bot": false,
"headline": "chore(package): update argon2 to 0.16.1",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2017-07-06T15:24:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "35881d86b91318ab97f483b57d16fe10288fcb6f",
"body": null,
"is_bot": false,
"headline": "chore(package): update dev dependencies",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2017-07-06T15:16:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d792f29dcad3e8ebd4e6e508e8e7aa63ce698d9b",
"body": null,
"is_bot": false,
"headline": "0.6.1",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2017-03-01T08:59:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "90bf743c097b33c9703afc1e9c7f902f88f81f5b",
"body": null,
"is_bot": false,
"headline": "chore(package): run tests before commit",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2017-03-01T08:59:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "735d1ef1e11dd06d8407220c46ca1df6d5478e2e",
"body": null,
"is_bot": false,
"headline": "fix(needsRehash): for Argon2",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2017-03-01T08:59:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "32e08281a16de0de0227f49412827ed9f48a3090",
"body": null,
"is_bot": false,
"headline": "chore(package): update all dependencies",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2017-03-01T08:37:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "787e7e592befe899e7eeb220ff3a358f258ce26e",
"body": null,
"is_bot": false,
"headline": "0.6.0",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2017-01-02T11:29:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "afecbc5d3de87c95f7c9cefe795e2c77b0c7f4d4",
"body": null,
"is_bot": false,
"headline": "chore(package): add yarn.lock",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2017-01-02T11:28:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ccf48431614594d75bf9f9dd10d9011f4bf5671a",
"body": null,
"is_bot": false,
"headline": "chore(package): update all dependencies",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2017-01-02T11:27:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f1212f9f877403cc64b63c00eb8a1a770bcb6572",
"body": null,
"is_bot": false,
"headline": "chore(package): improve description & keywords",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2017-01-02T11:25:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bdc10a2f57dc9c34fb4bc7f385d7b182d488cab0",
"body": null,
"is_bot": false,
"headline": "chore(package): update yargs to version 6.5.0",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2016-12-13T13:05:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d1b883fdfd471590aa36693265d48de2b55ed87f",
"body": null,
"is_bot": false,
"headline": "chore(tests): better conditional testing for argon2",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2016-12-13T13:03:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "14d93c08cb01d2c91c91ddbf046d8a905bbaad09",
"body": null,
"is_bot": false,
"headline": "feat(tests): use Jest instead of mocha/chai",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2016-12-13T12:59:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "54aa8d731f39d9dec8501353d93ad796d19b8e0e",
"body": null,
"is_bot": false,
"headline": "chore(package): update bcrypt to version 1.0.1",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2016-12-13T12:58:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f924a89b8717b0afe80cc21d018f024b2ac7f6d3",
"body": null,
"is_bot": false,
"headline": "fix(README): fix links",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2016-12-08T13:12:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "60f2062af60ef98f792d3acc73ceed60004fe0b5",
"body": "BREAKING CHANGE: This module no longer supports Node.js 0.10",
"is_bot": false,
"headline": "chore: drop support for Node.js 0.10 (#27)",
"author_name": "Greenkeeper",
"author_login": "greenkeeperio-bot",
"committed_at": "2016-11-01T15:33:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "114989453ad65ed699de587b25a3e8edfd4d59f4",
"body": "https://greenkeeper.io/",
"is_bot": false,
"headline": "chore(package): update promise-toolbox to version 0.7.0 (#26)",
"author_name": "Greenkeeper",
"author_login": "greenkeeperio-bot",
"committed_at": "2016-10-24T13:00:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2e6a1e8c9d75987e86869d0d775c7479d6ea26a4",
"body": "https://greenkeeper.io/",
"is_bot": false,
"headline": "Update promise-toolbox to version 0.6.0 🚀 (#23)",
"author_name": "Greenkeeper",
"author_login": "greenkeeperio-bot",
"committed_at": "2016-10-11T15:29:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9214300ebc877a52da936fa524a43023d4c2490a",
"body": "https://greenkeeper.io/",
"is_bot": false,
"headline": "chore(package): update argon2 to version 0.14.1 (#21)",
"author_name": "Greenkeeper",
"author_login": "greenkeeperio-bot",
"committed_at": "2016-09-11T15:56:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f60b228be1aa8ae0d7564cca985ac60a2d0c7cde",
"body": "https://greenkeeper.io/",
"is_bot": false,
"headline": "chore(package): update standard to version 8.0.0 (#18)",
"author_name": "Greenkeeper",
"author_login": "greenkeeperio-bot",
"committed_at": "2016-08-24T15:27:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6e742141c79bc636812d426ebb576f85ff441e1b",
"body": "https://greenkeeper.io/",
"is_bot": false,
"headline": "chore(package): update promise-toolbox to version 0.5.0 (#16)",
"author_name": "Greenkeeper",
"author_login": "greenkeeperio-bot",
"committed_at": "2016-08-16T09:40:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "899a9c2e8d31bfcb840db23c9291dbeb419d142b",
"body": "https://greenkeeper.io/",
"is_bot": false,
"headline": "chore(package): update mocha to version 3.0.0 (#15)",
"author_name": "Greenkeeper",
"author_login": "greenkeeperio-bot",
"committed_at": "2016-08-02T14:20:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a0910906545abb95b113a1a48d14304fe76d3e57",
"body": null,
"is_bot": false,
"headline": "0.5.1",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2016-06-22T08:43:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5848e55f7a6f13fefc66574c03e8141d7b8c3244",
"body": null,
"is_bot": false,
"headline": "feat(cli): possibility to choose an algorithm",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2016-06-22T08:40:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0822d16740b1032b90d5503e1b66bb226f83c920",
"body": null,
"is_bot": false,
"headline": "fix(getInfo): Argon2 1.3 added version number in hash",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2016-06-22T08:40:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2e327d91f3ad372e4d45e46f383f5571beb1dc06",
"body": "https://greenkeeper.io/",
"is_bot": false,
"headline": "chore(package): update argon2 to version 0.12.0 (#12)",
"author_name": "Greenkeeper",
"author_login": "greenkeeperio-bot",
"committed_at": "2016-06-21T22:37:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "15d2b217bc505b6a6bc7f500815f33a1fb65fed8",
"body": "https://greenkeeper.io/",
"is_bot": false,
"headline": "chore(package): update standard to version 7.0.0 (#8)",
"author_name": "Greenkeeper",
"author_login": "greenkeeperio-bot",
"committed_at": "2016-05-03T07:17:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7f95b374dbdb32f36ec5c6a5fc4788b30fead303",
"body": null,
"is_bot": false,
"headline": "0.5.0",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2016-04-25T08:46:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a87a789d157183d4736b833320f58d09491ecea2",
"body": null,
"is_bot": false,
"headline": "Update promise-toolbox.",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2016-04-25T08:46:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c1c6b5e44bbf35397e155fe125c3c02ae0dc6890",
"body": "Argon2 support",
"is_bot": false,
"headline": "Merge pull request #4 from JsCommunity/argon2 (fix #2)",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2016-04-25T08:44:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1c43a4f4173a33c30db68f604fa315386951b439",
"body": null,
"is_bot": false,
"headline": "List supported algo in README.",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2016-04-25T08:37:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f54910993c04d8e3fbd50e25656b2f9c0aa6e0a8",
"body": null,
"is_bot": false,
"headline": "argon2 dep: update to v0.11.",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2016-04-25T08:25:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2b3f645e0a5a55f4f4c10ec391738298dbf4413c",
"body": null,
"is_bot": false,
"headline": "Update deps.",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2016-02-12T09:08:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "74ed696359272cb99ffc4b9a03e6f54b6ff03547",
"body": null,
"is_bot": false,
"headline": "Only tests argon2 in Node >= 4.",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2016-02-12T09:04:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bcf6067f280e19e8a54f717b00da0618fd7cd10d",
"body": null,
"is_bot": false,
"headline": "Use Ubuntu Trusty on Travis.",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2016-02-11T09:33:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cb0818437b2655ef9970475f0d84b7b2fbcda496",
"body": null,
"is_bot": false,
"headline": "Keep Bcrypt as default for now.",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2016-02-09T09:36:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "97d2f888cd12d30aea97eec1d634debb7a2d9d9a",
"body": null,
"is_bot": false,
"headline": "bcrypt: Fix support for $2y$ prefix.",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2016-02-08T08:52:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ab4d73495fc8c6b0415f7ab97eb71171b907a95b",
"body": null,
"is_bot": false,
"headline": "Initial argon2 implementation.",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2016-02-05T17:23:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8764bcbcae445d27648157ddbad78df11d770770",
"body": "Remove Bluebird dependency.",
"is_bot": false,
"headline": "Merge pull request #3 from julien-f/remove-bluebird",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2016-02-05T10:42:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cd1b17b46bd25d500dc10a46b52ee0af51eadee8",
"body": null,
"is_bot": false,
"headline": "Remove Bluebird dependency.",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2016-02-05T10:34:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "55b67176129fe88f1b38768730d99d054f489f89",
"body": null,
"is_bot": false,
"headline": "Test on Node 0.12, 4 and latest stable.",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2016-01-12T12:36:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d157f7462c7591f731066b80e26a43ee750203b7",
"body": null,
"is_bot": false,
"headline": "Coding style.",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2015-10-26T16:21:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4f3c7158afd19741e54e22a3d7bdd1dcb1f05e29",
"body": null,
"is_bot": false,
"headline": "Speed up the tests.",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2015-06-09T13:38:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bad1bd4ea7755c1b38fe4e9e04a356edc39f8f59",
"body": null,
"is_bot": false,
"headline": "Bcrypt cost can be specified to the CLI.",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2015-06-09T13:37:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "09dc9f58e0214177d5110a2877051e126a69b2c0",
"body": null,
"is_bot": false,
"headline": "More unit tests.",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2015-06-09T13:22:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "287c11f1a3d1f00a60bac2497cf9055f34d384e4",
"body": null,
"is_bot": false,
"headline": "Fixes a link.",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2015-06-09T13:22:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ab822fe4a117b44aa0b980d298dbd160884ab9f0",
"body": null,
"is_bot": false,
"headline": "0.4.4",
"author_name": "Julien Fontanet",
"author_login": "julien-f",
"committed_at": "2015-06-09T13:01:28Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 27,
"commits_last_year": 9,
"latest_release_at": "2026-07-21T11:40:10Z",
"latest_release_tag": "v0.13.0",
"releases_from_tags": true,
"days_since_last_push": 8,
"active_weeks_last_year": 1,
"days_since_latest_release": 8,
"mean_days_between_releases": 366.9
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 37,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "hashy",
"exists": true,
"license": "MIT",
"keywords": [
"argon2",
"bcrypt",
"hash",
"hashing",
"password"
],
"ecosystem": "npm",
"matches_repo": true,
"registry_url": "https://www.npmjs.com/package/hashy",
"is_deprecated": false,
"latest_version": "0.13.0",
"repository_url": "https://github.com/JsCommunity/hashy",
"versions_count": 29,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": 3,
"monthly_downloads": 4730,
"first_published_at": "2013-06-19T14:42:10.644000Z",
"latest_published_at": "2026-07-21T11:43:20.902000Z",
"latest_version_yanked": null,
"days_since_latest_publish": 8
}
]
},
"popularity": {
"forks": 1,
"stars": 8,
"watchers": 1,
"fork_history": {
"days": [
{
"date": "2018-05-20",
"count": 1
}
],
"complete": true,
"collected": 1,
"total_forks": 1
},
"star_history": null,
"open_issues_and_prs": 8
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [
"examples"
],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [],
"largest_source_bytes": 7520,
"source_files_sampled": 8,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"package.json"
],
"advisories": {
"error": null,
"scope": "repository_graph",
"source": "osv",
"findings": [
{
"name": "brace-expansion",
"direct": false,
"version": "1.1.16",
"severity": "high",
"ecosystem": "npm",
"cvss_score": 7.5,
"advisory_ids": [
"GHSA-mh99-v99m-4gvg"
],
"fixed_version": "5.0.8",
"advisory_count": 1,
"oldest_advisory_days": 4
}
],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {
"high": 1
},
"advisory_count": 1,
"affected_count": 1,
"assessed_count": 156,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"npm"
],
"dependencies": [
{
"name": "argon2",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^0.45.0"
},
{
"name": "bcryptjs",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^3.0.3"
},
{
"name": "yargs",
"manifest": "package.json",
"ecosystem": "npm",
"version_constraint": "^17.7.2"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "argon2",
"direct": true,
"version": "0.45.0",
"ecosystem": "npm"
},
{
"name": "bcryptjs",
"direct": true,
"version": "3.0.3",
"ecosystem": "npm"
},
{
"name": "yargs",
"direct": true,
"version": "17.7.3",
"ecosystem": "npm"
},
{
"name": "@epic-web/invariant",
"direct": false,
"version": "1.0.0",
"ecosystem": "npm"
},
{
"name": "@eslint-community/eslint-utils",
"direct": false,
"version": "4.9.1",
"ecosystem": "npm"
},
{
"name": "@eslint-community/regexpp",
"direct": false,
"version": "4.12.1",
"ecosystem": "npm"
},
{
"name": "@eslint/config-array",
"direct": false,
"version": "0.21.2",
"ecosystem": "npm"
},
{
"name": "@eslint/config-helpers",
"direct": false,
"version": "0.4.2",
"ecosystem": "npm"
},
{
"name": "@eslint/core",
"direct": false,
"version": "0.17.0",
"ecosystem": "npm"
},
{
"name": "@eslint/eslintrc",
"direct": false,
"version": "3.3.6",
"ecosystem": "npm"
},
{
"name": "@eslint/js",
"direct": false,
"version": "9.39.5",
"ecosystem": "npm"
},
{
"name": "@eslint/object-schema",
"direct": false,
"version": "2.1.7",
"ecosystem": "npm"
},
{
"name": "@eslint/plugin-kit",
"direct": false,
"version": "0.4.1",
"ecosystem": "npm"
},
{
"name": "@humanfs/core",
"direct": false,
"version": "0.19.1",
"ecosystem": "npm"
},
{
"name": "@humanfs/node",
"direct": false,
"version": "0.16.6",
"ecosystem": "npm"
},
{
"name": "@humanwhocodes/module-importer",
"direct": false,
"version": "1.0.1",
"ecosystem": "npm"
},
{
"name": "@humanwhocodes/retry",
"direct": false,
"version": "0.3.1",
"ecosystem": "npm"
},
{
"name": "@humanwhocodes/retry",
"direct": false,
"version": "0.4.3",
"ecosystem": "npm"
},
{
"name": "@phc/format",
"direct": false,
"version": "1.0.0",
"ecosystem": "npm"
},
{
"name": "@types/estree",
"direct": false,
"version": "1.0.6",
"ecosystem": "npm"
},
{
"name": "@types/json-schema",
"direct": false,
"version": "7.0.15",
"ecosystem": "npm"
},
{
"name": "acorn",
"direct": false,
"version": "8.17.0",
"ecosystem": "npm"
},
{
"name": "acorn-jsx",
"direct": false,
"version": "5.3.2",
"ecosystem": "npm"
},
{
"name": "ajv",
"direct": false,
"version": "6.15.0",
"ecosystem": "npm"
},
{
"name": "ansi-escapes",
"direct": false,
"version": "7.0.0",
"ecosystem": "npm"
},
{
"name": "ansi-regex",
"direct": false,
"version": "5.0.1",
"ecosystem": "npm"
},
{
"name": "ansi-regex",
"direct": false,
"version": "6.1.0",
"ecosystem": "npm"
},
{
"name": "ansi-styles",
"direct": false,
"version": "4.3.0",
"ecosystem": "npm"
},
{
"name": "ansi-styles",
"direct": false,
"version": "6.2.1",
"ecosystem": "npm"
},
{
"name": "argparse",
"direct": false,
"version": "2.0.1",
"ecosystem": "npm"
},
{
"name": "balanced-match",
"direct": false,
"version": "1.0.2",
"ecosystem": "npm"
},
{
"name": "brace-expansion",
"direct": false,
"version": "1.1.16",
"ecosystem": "npm"
},
{
"name": "braces",
"direct": false,
"version": "3.0.3",
"ecosystem": "npm"
},
{
"name": "callsites",
"direct": false,
"version": "3.1.0",
"ecosystem": "npm"
},
{
"name": "chalk",
"direct": false,
"version": "4.1.2",
"ecosystem": "npm"
},
{
"name": "chalk",
"direct": false,
"version": "5.4.1",
"ecosystem": "npm"
},
{
"name": "cli-cursor",
"direct": false,
"version": "5.0.0",
"ecosystem": "npm"
},
{
"name": "cli-truncate",
"direct": false,
"version": "4.0.0",
"ecosystem": "npm"
},
{
"name": "cliui",
"direct": false,
"version": "8.0.1",
"ecosystem": "npm"
},
{
"name": "color-convert",
"direct": false,
"version": "2.0.1",
"ecosystem": "npm"
},
{
"name": "color-name",
"direct": false,
"version": "1.1.4",
"ecosystem": "npm"
},
{
"name": "colorette",
"direct": false,
"version": "2.0.20",
"ecosystem": "npm"
},
{
"name": "commander",
"direct": false,
"version": "13.1.0",
"ecosystem": "npm"
},
{
"name": "concat-map",
"direct": false,
"version": "0.0.1",
"ecosystem": "npm"
},
{
"name": "cross-env",
"direct": false,
"version": "10.1.0",
"ecosystem": "npm"
},
{
"name": "cross-spawn",
"direct": false,
"version": "7.0.6",
"ecosystem": "npm"
},
{
"name": "debug",
"direct": false,
"version": "4.4.0",
"ecosystem": "npm"
},
{
"name": "deep-is",
"direct": false,
"version": "0.1.4",
"ecosystem": "npm"
},
{
"name": "emoji-regex",
"direct": false,
"version": "10.4.0",
"ecosystem": "npm"
},
{
"name": "emoji-regex",
"direct": false,
"version": "8.0.0",
"ecosystem": "npm"
},
{
"name": "environment",
"direct": false,
"version": "1.1.0",
"ecosystem": "npm"
},
{
"name": "escalade",
"direct": false,
"version": "3.2.0",
"ecosystem": "npm"
},
{
"name": "escape-string-regexp",
"direct": false,
"version": "4.0.0",
"ecosystem": "npm"
},
{
"name": "eslint",
"direct": false,
"version": "9.39.5",
"ecosystem": "npm"
},
{
"name": "eslint-scope",
"direct": false,
"version": "8.4.0",
"ecosystem": "npm"
},
{
"name": "eslint-visitor-keys",
"direct": false,
"version": "3.4.3",
"ecosystem": "npm"
},
{
"name": "eslint-visitor-keys",
"direct": false,
"version": "4.2.1",
"ecosystem": "npm"
},
{
"name": "espree",
"direct": false,
"version": "10.4.0",
"ecosystem": "npm"
},
{
"name": "esquery",
"direct": false,
"version": "1.6.0",
"ecosystem": "npm"
},
{
"name": "esrecurse",
"direct": false,
"version": "4.3.0",
"ecosystem": "npm"
},
{
"name": "estraverse",
"direct": false,
"version": "5.3.0",
"ecosystem": "npm"
},
{
"name": "esutils",
"direct": false,
"version": "2.0.3",
"ecosystem": "npm"
},
{
"name": "eventemitter3",
"direct": false,
"version": "5.0.1",
"ecosystem": "npm"
},
{
"name": "execa",
"direct": false,
"version": "8.0.1",
"ecosystem": "npm"
},
{
"name": "fast-deep-equal",
"direct": false,
"version": "3.1.3",
"ecosystem": "npm"
},
{
"name": "fast-json-stable-stringify",
"direct": false,
"version": "2.1.0",
"ecosystem": "npm"
},
{
"name": "fast-levenshtein",
"direct": false,
"version": "2.0.6",
"ecosystem": "npm"
},
{
"name": "file-entry-cache",
"direct": false,
"version": "8.0.0",
"ecosystem": "npm"
},
{
"name": "fill-range",
"direct": false,
"version": "7.1.1",
"ecosystem": "npm"
},
{
"name": "find-up",
"direct": false,
"version": "5.0.0",
"ecosystem": "npm"
},
{
"name": "flat-cache",
"direct": false,
"version": "4.0.1",
"ecosystem": "npm"
},
{
"name": "flatted",
"direct": false,
"version": "3.4.2",
"ecosystem": "npm"
},
{
"name": "get-caller-file",
"direct": false,
"version": "2.0.5",
"ecosystem": "npm"
},
{
"name": "get-east-asian-width",
"direct": false,
"version": "1.3.0",
"ecosystem": "npm"
},
{
"name": "get-stream",
"direct": false,
"version": "8.0.1",
"ecosystem": "npm"
},
{
"name": "glob-parent",
"direct": false,
"version": "6.0.2",
"ecosystem": "npm"
},
{
"name": "globals",
"direct": false,
"version": "14.0.0",
"ecosystem": "npm"
},
{
"name": "globals",
"direct": false,
"version": "15.15.0",
"ecosystem": "npm"
},
{
"name": "has-flag",
"direct": false,
"version": "4.0.0",
"ecosystem": "npm"
},
{
"name": "human-signals",
"direct": false,
"version": "5.0.0",
"ecosystem": "npm"
},
{
"name": "husky",
"direct": false,
"version": "9.1.7",
"ecosystem": "npm"
},
{
"name": "ignore",
"direct": false,
"version": "5.3.2",
"ecosystem": "npm"
},
{
"name": "import-fresh",
"direct": false,
"version": "3.3.1",
"ecosystem": "npm"
},
{
"name": "imurmurhash",
"direct": false,
"version": "0.1.4",
"ecosystem": "npm"
},
{
"name": "is-extglob",
"direct": false,
"version": "2.1.1",
"ecosystem": "npm"
},
{
"name": "is-fullwidth-code-point",
"direct": false,
"version": "3.0.0",
"ecosystem": "npm"
},
{
"name": "is-fullwidth-code-point",
"direct": false,
"version": "4.0.0",
"ecosystem": "npm"
},
{
"name": "is-fullwidth-code-point",
"direct": false,
"version": "5.0.0",
"ecosystem": "npm"
},
{
"name": "is-glob",
"direct": false,
"version": "4.0.3",
"ecosystem": "npm"
},
{
"name": "is-number",
"direct": false,
"version": "7.0.0",
"ecosystem": "npm"
},
{
"name": "is-stream",
"direct": false,
"version": "3.0.0",
"ecosystem": "npm"
},
{
"name": "isexe",
"direct": false,
"version": "2.0.0",
"ecosystem": "npm"
},
{
"name": "js-yaml",
"direct": false,
"version": "4.3.0",
"ecosystem": "npm"
},
{
"name": "json-buffer",
"direct": false,
"version": "3.0.1",
"ecosystem": "npm"
},
{
"name": "json-schema-traverse",
"direct": false,
"version": "0.4.1",
"ecosystem": "npm"
},
{
"name": "json-stable-stringify-without-jsonify",
"direct": false,
"version": "1.0.1",
"ecosystem": "npm"
},
{
"name": "keyv",
"direct": false,
"version": "4.5.4",
"ecosystem": "npm"
},
{
"name": "levn",
"direct": false,
"version": "0.4.1",
"ecosystem": "npm"
},
{
"name": "lilconfig",
"direct": false,
"version": "3.1.3",
"ecosystem": "npm"
},
{
"name": "lint-staged",
"direct": false,
"version": "15.5.2",
"ecosystem": "npm"
},
{
"name": "listr2",
"direct": false,
"version": "8.2.5",
"ecosystem": "npm"
},
{
"name": "locate-path",
"direct": false,
"version": "6.0.0",
"ecosystem": "npm"
},
{
"name": "lodash.merge",
"direct": false,
"version": "4.6.2",
"ecosystem": "npm"
},
{
"name": "log-update",
"direct": false,
"version": "6.1.0",
"ecosystem": "npm"
},
{
"name": "merge-stream",
"direct": false,
"version": "2.0.0",
"ecosystem": "npm"
},
{
"name": "micromatch",
"direct": false,
"version": "4.0.8",
"ecosystem": "npm"
},
{
"name": "mimic-fn",
"direct": false,
"version": "4.0.0",
"ecosystem": "npm"
},
{
"name": "mimic-function",
"direct": false,
"version": "5.0.1",
"ecosystem": "npm"
},
{
"name": "minimatch",
"direct": false,
"version": "3.1.5",
"ecosystem": "npm"
},
{
"name": "ms",
"direct": false,
"version": "2.1.3",
"ecosystem": "npm"
},
{
"name": "natural-compare",
"direct": false,
"version": "1.4.0",
"ecosystem": "npm"
},
{
"name": "node-addon-api",
"direct": false,
"version": "8.9.0",
"ecosystem": "npm"
},
{
"name": "node-gyp-build",
"direct": false,
"version": "4.8.4",
"ecosystem": "npm"
},
{
"name": "npm-run-path",
"direct": false,
"version": "5.3.0",
"ecosystem": "npm"
},
{
"name": "onetime",
"direct": false,
"version": "6.0.0",
"ecosystem": "npm"
},
{
"name": "onetime",
"direct": false,
"version": "7.0.0",
"ecosystem": "npm"
},
{
"name": "optionator",
"direct": false,
"version": "0.9.4",
"ecosystem": "npm"
},
{
"name": "p-limit",
"direct": false,
"version": "3.1.0",
"ecosystem": "npm"
},
{
"name": "p-locate",
"direct": false,
"version": "5.0.0",
"ecosystem": "npm"
},
{
"name": "parent-module",
"direct": false,
"version": "1.0.1",
"ecosystem": "npm"
},
{
"name": "path-exists",
"direct": false,
"version": "4.0.0",
"ecosystem": "npm"
},
{
"name": "path-key",
"direct": false,
"version": "3.1.1",
"ecosystem": "npm"
},
{
"name": "path-key",
"direct": false,
"version": "4.0.0",
"ecosystem": "npm"
},
{
"name": "picomatch",
"direct": false,
"version": "2.3.2",
"ecosystem": "npm"
},
{
"name": "pidtree",
"direct": false,
"version": "0.6.0",
"ecosystem": "npm"
},
{
"name": "prelude-ls",
"direct": false,
"version": "1.2.1",
"ecosystem": "npm"
},
{
"name": "prettier",
"direct": false,
"version": "3.9.6",
"ecosystem": "npm"
},
{
"name": "punycode",
"direct": false,
"version": "2.3.1",
"ecosystem": "npm"
},
{
"name": "require-directory",
"direct": false,
"version": "2.1.1",
"ecosystem": "npm"
},
{
"name": "resolve-from",
"direct": false,
"version": "4.0.0",
"ecosystem": "npm"
},
{
"name": "restore-cursor",
"direct": false,
"version": "5.1.0",
"ecosystem": "npm"
},
{
"name": "rfdc",
"direct": false,
"version": "1.4.1",
"ecosystem": "npm"
},
{
"name": "shebang-command",
"direct": false,
"version": "2.0.0",
"ecosystem": "npm"
},
{
"name": "shebang-regex",
"direct": false,
"version": "3.0.0",
"ecosystem": "npm"
},
{
"name": "signal-exit",
"direct": false,
"version": "4.1.0",
"ecosystem": "npm"
},
{
"name": "slice-ansi",
"direct": false,
"version": "5.0.0",
"ecosystem": "npm"
},
{
"name": "slice-ansi",
"direct": false,
"version": "7.1.0",
"ecosystem": "npm"
},
{
"name": "string-argv",
"direct": false,
"version": "0.3.2",
"ecosystem": "npm"
},
{
"name": "string-width",
"direct": false,
"version": "4.2.3",
"ecosystem": "npm"
},
{
"name": "string-width",
"direct": false,
"version": "7.2.0",
"ecosystem": "npm"
},
{
"name": "strip-ansi",
"direct": false,
"version": "6.0.1",
"ecosystem": "npm"
},
{
"name": "strip-ansi",
"direct": false,
"version": "7.1.0",
"ecosystem": "npm"
},
{
"name": "strip-final-newline",
"direct": false,
"version": "3.0.0",
"ecosystem": "npm"
},
{
"name": "strip-json-comments",
"direct": false,
"version": "3.1.1",
"ecosystem": "npm"
},
{
"name": "supports-color",
"direct": false,
"version": "7.2.0",
"ecosystem": "npm"
},
{
"name": "to-regex-range",
"direct": false,
"version": "5.0.1",
"ecosystem": "npm"
},
{
"name": "type-check",
"direct": false,
"version": "0.4.0",
"ecosystem": "npm"
},
{
"name": "uri-js",
"direct": false,
"version": "4.4.1",
"ecosystem": "npm"
},
{
"name": "which",
"direct": false,
"version": "2.0.2",
"ecosystem": "npm"
},
{
"name": "word-wrap",
"direct": false,
"version": "1.2.5",
"ecosystem": "npm"
},
{
"name": "wrap-ansi",
"direct": false,
"version": "7.0.0",
"ecosystem": "npm"
},
{
"name": "wrap-ansi",
"direct": false,
"version": "9.0.0",
"ecosystem": "npm"
},
{
"name": "y18n",
"direct": false,
"version": "5.0.8",
"ecosystem": "npm"
},
{
"name": "yaml",
"direct": false,
"version": "2.9.0",
"ecosystem": "npm"
},
{
"name": "yargs-parser",
"direct": false,
"version": "21.1.1",
"ecosystem": "npm"
},
{
"name": "yocto-queue",
"direct": false,
"version": "0.1.0",
"ecosystem": "npm"
}
],
"collected": true,
"truncated": false,
"total_count": 156,
"direct_count": 3,
"indirect_count": 153
}
},
"maintainership": {
"issues": {
"open_prs": 4,
"merged_prs": 11,
"open_issues": 4,
"closed_ratio": 0.333,
"closed_issues": 2,
"closed_unmerged_prs": 26
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "julien-f",
"commits": 154,
"avatar_url": "https://avatars.githubusercontent.com/u/298721?v=4"
},
{
"type": "User",
"login": "greenkeeperio-bot",
"commits": 9,
"avatar_url": "https://avatars.githubusercontent.com/u/14790466?v=4"
}
],
"contributors_sampled": 2,
"top_contributor_share": 0.945
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"ci.yml"
],
"has_docs_dir": false,
"linter_configs": [
"eslint.config.mjs"
],
"has_editorconfig": true,
"has_linter_config": true,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [
"package-lock.json"
],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": 0,
"reason": "branch protection not enabled on development/release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": null,
"reason": "no pull request found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 0,
"reason": "Found 0/30 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 5 contributing companies or organizations",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 0,
"reason": "no update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 7,
"reason": "9 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 7",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 3,
"reason": "dependency not pinned by hash detected -- score normalized to 3",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "no SAST tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 9,
"reason": "1 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "9f5807bbac9a429427e827a13cecb223a790c911",
"ran_at": "2026-07-29T17:48:49Z",
"aggregate_score": 4,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-21T12:33:05Z",
"oldest_open_prs": [
{
"number": 44,
"created_at": "2022-06-04T00:03:07Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 45,
"created_at": "2023-01-01T04:25:09Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 46,
"created_at": "2023-01-07T02:58:15Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 47,
"created_at": "2023-03-04T03:07:38Z",
"last_comment_at": null,
"last_comment_author": null
}
],
"last_merged_pr_at": "2016-11-01T15:33:57Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 1,
"created_at": "2016-01-12T12:44:57Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 6,
"created_at": "2016-04-25T08:47:10Z",
"last_comment_at": "2016-10-03T06:58:27Z",
"last_comment_author": "julien-f"
},
{
"number": 30,
"created_at": "2018-07-10T19:02:02Z",
"last_comment_at": "2019-02-07T21:49:35Z",
"last_comment_author": "julien-f"
},
{
"number": 31,
"created_at": "2018-07-10T19:17:01Z",
"last_comment_at": "2018-07-18T07:27:27Z",
"last_comment_author": "julien-f"
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/JsCommunity/hashy",
"host": "github.com",
"name": "hashy",
"owner": "JsCommunity"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 53,
"inputs": {
"security": 52,
"vitality": 53,
"community": 38,
"governance": 48,
"engineering": 73
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 53,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "at_risk",
"name": "Development activity",
"note": null,
"notes": [],
"value": 46,
"inputs": {
"commits_last_year": 9,
"human_commit_share": 1,
"days_since_last_push": 8,
"active_weeks_last_year": 1
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 8 days ago",
"points": 28.8,
"status": "partial",
"details": [
{
"code": "push_recency",
"params": {
"days": 8
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "1/52 weeks with commits",
"points": 0.7,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 1
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "9 commits in the last year",
"points": 9,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 9
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "9 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 7",
"points": 7,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "moderate",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 64,
"inputs": {
"releases_count": 27,
"latest_release_tag": "v0.13.0",
"releases_from_tags": true,
"days_since_latest_release": 8,
"mean_days_between_releases": 366.9
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "27 version tags (no GitHub releases)",
"points": 16.2,
"status": "partial",
"details": [
{
"code": "version_tags_no_releases",
"params": {
"count": 27
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 8 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 8
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~366.9 days",
"points": 5.4,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 366.9
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 8,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 8 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 8
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "at_risk",
"name": "Community & Adoption",
"value": 38,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 14,
"inputs": {
"forks": 1,
"stars": 8,
"watchers": 1,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "8 stars",
"points": 13.7,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 8
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "1 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 1
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "1 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 1
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (MIT)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "MIT"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
},
{
"key": "ecosystem_adoption",
"band": "moderate",
"name": "Ecosystem adoption (downloads)",
"note": "Excluded from scoring (no data or not applicable): Registry dependents. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"registry_dependents"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 61,
"inputs": {
"packages": [
"hashy"
],
"dependents": null,
"ecosystems": "npm",
"total_downloads": null,
"monthly_downloads": 4730
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "4,730 downloads/month across npm",
"points": 49,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 4730,
"ecosystems": "npm"
}
}
],
"max_points": 80
},
{
"key": "registry_dependents",
"name": "Registry dependents",
"detail": "not reported by this ecosystem",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_reported_by_this_ecosystem",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "at_risk",
"name": "Sustainability & Governance",
"value": 48,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 23,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 2,
"top_contributor_share": 0.945
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "1 contributor(s) cover half of all commits",
"points": 9,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 1
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 94% of commits",
"points": 1.2,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 94
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "2 contributors",
"points": 2.7,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 2
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 5 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "critical",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 27,
"inputs": {
"merged_prs": 11,
"open_issues": 4,
"closed_issues": 2,
"issue_closed_ratio": 0.333,
"closed_unmerged_prs": 26
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "33% of issues closed",
"points": 15.6,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 33
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "11/37 decided PRs merged",
"points": 11.4,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 11,
"decided": 37
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 59,
"inputs": {
"followers": 5,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "JsCommunity",
"public_repos": 33,
"account_age_days": 3774
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "organization-owned",
"points": 30,
"status": "met",
"details": [
{
"code": "owner_organization",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "5 followers of JsCommunity",
"points": 5.6,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 5,
"login": "JsCommunity"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "33 public repos, account ~10 yr old",
"points": 23.2,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 33
}
},
{
"code": "account_age_years",
"params": {
"years": 10
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"hashy"
],
"ecosystems": "npm",
"any_deprecated": false,
"min_days_since_publish": 8
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on npm",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "npm"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 8 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 8
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "29 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 29
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "good",
"name": "Engineering Quality",
"value": 73,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "excellent",
"name": "Engineering practices",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: CI-Tests. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_ci_tests"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 88,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": true,
"has_linter_config": true,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "1 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 1
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": "eslint.config.mjs",
"points": 16,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "eslint.config.mjs"
}
}
],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 6.4,
"status": "met",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": null,
"has_readme": true,
"has_docs_dir": false,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "moderate",
"name": "Security",
"value": 52,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): CI-Tests, Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"ci_tests",
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 40,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 15,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 3,
"scorecard_aggregate": 4
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 5 contributing companies or organizations",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "no update tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "9 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 7",
"points": 5.2,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 3",
"points": 1.5,
"status": "partial",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "no SAST tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "1 existing vulnerabilities detected",
"points": 6.8,
"status": "partial",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "excellent",
"name": "Dependency advisories",
"note": "Excluded from scoring (no data or not applicable): Indirect dependencies free of known advisories, No advisories left outstanding. Remaining weights renormalized. Matched 156 resolved dependencies against OSV. This repository publishes no package the index resolves, so the repository dependency graph was assessed instead. That graph mixes development and test pins with shipped dependencies, so only the declared runtime dependencies are scored; transitive findings are reported as context and excluded from the score. Reachability is not analyzed.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"indirect_dependencies_free_of_known_advisories",
"no_advisories_left_outstanding"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "advisories_scope_repository",
"params": {
"assessed": 156
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 1,
"affected_packages": 1,
"assessed_packages": 156,
"unassessed_packages": 0,
"affected_by_severity": "high 1",
"direct_affected_packages": 0
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "no direct dependency carries a known advisory",
"points": 35,
"status": "met",
"details": [
{
"code": "no_direct_advisories",
"params": {}
}
],
"max_points": 35
},
{
"key": "indirect_dependencies_free_of_known_advisories",
"name": "Indirect dependencies free of known advisories",
"detail": "transitive set not separable from development and test dependencies in this scope",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_scope_not_separable",
"params": {}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "no advisory carries a publication date",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_no_publication_date",
"params": {}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "excellent",
"name": "Malicious dependencies",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"source": "osv",
"meaning": "reported as a malicious package by the OpenSSF corpus; the remedy is removal or moving off the compromised name, never an upgrade of the same artifact. Versions the registry has since pulled are listed but not scored",
"packages": [],
"red_flag": false,
"assessed_packages": 156,
"malicious_packages": 0,
"direct_malicious_packages": 0,
"withdrawn_malicious_packages": 0,
"installable_malicious_packages": 0
},
"components": [
{
"key": "no_dependency_reported_as_a_malicious_package",
"name": "No dependency reported as a malicious package",
"detail": "no dependency is reported as a malicious package",
"points": 100,
"status": "met",
"details": [
{
"code": "no_malicious_dependencies",
"params": {}
}
],
"max_points": 100
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "excellent",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 4
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "at_risk",
"name": "AI Readiness",
"value": 48,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 37,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.7,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "no CLAUDE.md / AGENTS.md / editor rules",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_instructions",
"params": {}
}
],
"max_points": 45
},
{
"key": "machine_readable_docs_llms_txt",
"name": "Machine-readable docs (llms.txt)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "legible_commit_history",
"name": "Legible commit history",
"detail": "70 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 37.3,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 70,
"sampled": 100
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 56,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"package-lock.json"
],
"has_dockerfile": false,
"typed_language": false,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": true,
"typecheck_configs": [],
"agent_commit_share": 0.06,
"toolchain_manifests": [],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 22,
"status": "met",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": "eslint.config.mjs",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "eslint.config.mjs"
}
}
],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": "lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "6 of the last 100 commits agent-authored or agent-credited",
"points": 10,
"status": "met",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 6,
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "no automated dependency updates observed",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_dependency_automation",
"params": {}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 3",
"points": 3,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "moderate",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 55,
"inputs": {
"primary_language": "JavaScript",
"largest_source_bytes": 7520,
"source_files_sampled": 8,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "JavaScript without a type-check config",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_typecheck_config_language",
"params": {
"language": "JavaScript"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/8 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 8,
"oversized": 0
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "at_risk",
"name": "Machine-readable interfaces",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"example_dirs": [
"examples"
],
"has_mcp_signal": false,
"api_schema_files": []
},
"components": [
{
"key": "api_schema_openapi_graphql_proto",
"name": "API schema (OpenAPI/GraphQL/proto)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 40
},
{
"key": "mcp_server",
"name": "MCP server",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "runnable_examples",
"name": "Runnable examples",
"detail": "examples",
"points": 40,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "examples"
}
}
],
"max_points": 40
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token",
"deps.dev does not index npm:hashy@0.13.0; advisories assessed against the repository dependency graph instead"
],
"report_type": "repository",
"generated_at": "2026-07-29T17:48:54.350032Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/j/JsCommunity/hashy.svg",
"full_name": "JsCommunity/hashy",
"license_state": "standard",
"license_spdx": "MIT"
}