Files
codeql-action/node_modules/matcher/package.json
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
1002 B
JSON
Raw Normal View History

2020-05-04 18:50:13 +01:00
{
"name": "matcher",
2022-02-01 18:01:11 +00:00
"version": "5.0.0",
2020-05-04 18:50:13 +01:00
"description": "Simple wildcard matching",
"license": "MIT",
"repository": "sindresorhus/matcher",
2022-02-01 18:01:11 +00:00
"funding": "https://github.com/sponsors/sindresorhus",
2020-05-04 18:50:13 +01:00
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
2022-02-01 18:01:11 +00:00
"type": "module",
"exports": "./index.js",
2020-05-04 18:50:13 +01:00
"engines": {
2022-02-01 18:01:11 +00:00
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
2020-05-04 18:50:13 +01:00
},
"scripts": {
"test": "xo && ava && tsd",
"bench": "matcha bench.js"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"matcher",
"matching",
"match",
"regex",
"regexp",
"regular",
"expression",
"wildcard",
"pattern",
"string",
"filter",
"glob",
"globber",
"globbing",
"minimatch"
],
"dependencies": {
2022-02-01 18:01:11 +00:00
"escape-string-regexp": "^5.0.0"
2020-05-04 18:50:13 +01:00
},
"devDependencies": {
2022-02-01 18:01:11 +00:00
"ava": "^3.15.0",
2020-05-04 18:50:13 +01:00
"matcha": "^0.7.0",
2022-02-01 18:01:11 +00:00
"tsd": "^0.17.0",
"xo": "^0.45.0"
2020-05-04 18:50:13 +01:00
}
2022-02-24 17:03:29 +00:00
}