Files
pnpm/packages/matcher/package.json
2019-10-06 17:02:54 +03:00

45 lines
1.0 KiB
JSON

{
"name": "@pnpm/matcher",
"version": "1.0.0",
"description": "A simple pattern matcher for pnpm",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"engines": {
"node": ">=10"
},
"files": [
"lib/"
],
"scripts": {
"lint": "tslint -c tslint.json src/**/*.ts test/**/*.ts",
"test": "pnpm run tsc && pnpm run lint && ts-node test --type-check",
"tsc": "rimraf lib && tsc",
"prepublishOnly": "pnpm run tsc"
},
"repository": "https://github.com/pnpm/pnpm/blob/master/packages/matcher",
"keywords": [
"pnpm",
"match",
"wildcard",
"pattern"
],
"author": {
"name": "Zoltan Kochan",
"email": "z@kochan.io",
"url": "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",
"devDependencies": {
"@pnpm/matcher": "link:",
"rimraf": "3.0.0",
"tape": "4.11.0"
},
"dependencies": {
"escape-string-regexp": "2.0.0"
}
}