Files
pnpm/packages/matcher/package.json
2021-01-03 16:23:23 +02:00

39 lines
1011 B
JSON

{
"name": "@pnpm/matcher",
"version": "1.0.3",
"description": "A simple pattern matcher for pnpm",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"engines": {
"node": ">=10.16"
},
"files": [
"lib",
"!*.map"
],
"scripts": {
"lint": "eslint -c ../../eslint.json src/**/*.ts test/**/*.ts",
"_test": "jest",
"test": "pnpm run compile && pnpm run _test",
"prepublishOnly": "pnpm run compile",
"compile": "rimraf lib tsconfig.tsbuildinfo && tsc --build"
},
"repository": "https://github.com/pnpm/pnpm/blob/master/packages/matcher",
"keywords": [
"pnpm",
"match",
"wildcard",
"pattern"
],
"author": "Zoltan Kochan <z@kochan.io> (https://www.kochan.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"homepage": "https://github.com/pnpm/pnpm/blob/master/packages/matcher#readme",
"dependencies": {
"escape-string-regexp": "^4.0.0"
},
"funding": "https://opencollective.com/pnpm"
}