Installing dependencies.

This commit is contained in:
2025-11-11 06:53:11 -05:00
parent 2c36c04da6
commit 0d2fea3c88
14371 changed files with 2770923 additions and 25 deletions
+44
View File
@@ -0,0 +1,44 @@
{
"name": "find-versions",
"version": "4.0.0",
"description": "Find semver versions in a string: `unicorn v1.2.3` → `1.2.3`",
"license": "MIT",
"repository": "sindresorhus/find-versions",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"engines": {
"node": ">=10"
},
"scripts": {
"test": "xo && ava && tsd"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"semver",
"version",
"versions",
"regex",
"regexp",
"match",
"matching",
"semantic",
"find",
"extract",
"get"
],
"dependencies": {
"semver-regex": "^3.1.2"
},
"devDependencies": {
"ava": "^2.4.0",
"tsd": "^0.14.0",
"xo": "^0.36.1"
}
}