forked from lix-project/lix-website
44 lines
714 B
JSON
44 lines
714 B
JSON
{
|
|
"name": "find-versions",
|
|
"version": "3.2.0",
|
|
"description": "Find semver versions in a string: `unicorn v1.2.3` → `1.2.3`",
|
|
"license": "MIT",
|
|
"repository": "sindresorhus/find-versions",
|
|
"author": {
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "sindresorhus.com"
|
|
},
|
|
"engines": {
|
|
"node": ">=6"
|
|
},
|
|
"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": "^2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "^1.4.1",
|
|
"tsd": "^0.7.2",
|
|
"xo": "^0.24.0"
|
|
}
|
|
}
|