Files
pnpm/packages/matcher/package.json
2021-04-05 04:52:05 +03:00

38 lines
969 B
JSON

{
"name": "@pnpm/matcher",
"version": "2.0.0",
"description": "A simple pattern matcher for pnpm",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"engines": {
"node": ">=12.17"
},
"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 && pnpm run lint -- --fix"
},
"repository": "https://github.com/pnpm/pnpm/blob/master/packages/matcher",
"keywords": [
"pnpm",
"match",
"wildcard",
"pattern"
],
"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"
}