wildcard-match
Version:
A tiny and extremely fast library for compiling and matching basic glob patterns
65 lines (64 loc) • 1.82 kB
JSON
{
"name": "wildcard-match",
"version": "5.1.4",
"description": "A tiny and extremely fast library for compiling and matching basic glob patterns",
"author": "Alex Schneider <me@schneider.ax>",
"license": "ISC",
"repository": "https://github.com/axtgr/wildcard-match",
"keywords": [
"glob",
"pattern",
"wildcard",
"match",
"regexp"
],
"packageManager": "yarn@1.22.22",
"type": "commonjs",
"main": "build/index.js",
"module": "build/index.es.mjs",
"unpkg": "build/index.umd.js",
"types": "build/index.d.ts",
"exports": {
"import": "./build/index.es.mjs",
"require": "./build/index.js",
"types": "./build/index.d.ts"
},
"files": [
"build"
],
"scripts": {
"build": "rollup -c",
"bench": "node bench/bench",
"lint": "eslint {src,test,bench}/*",
"format": "eslint --cache --fix {src,test,bench}/* && prettier --write **/*.md",
"test": "ts-node -T -r \"core-js/modules/es.symbol.async-iterator\" -I \" \" node_modules/pta/src/cli.js test/[!_]*.mjs"
},
"husky": {
"hooks": {
"pre-commit": "npm run format"
}
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"benchmark": "^2.1.4",
"core-js": "^3.36.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^3.4.1",
"globrex": "^0.1.2",
"husky": "^4.3.8",
"matcher": "^4.0.0",
"picomatch": "^4.0.2",
"prettier": "^2.8.8",
"pta": "^0.2.3",
"rollup": "^2.79.2",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "2.0.4",
"ts-node": "^9.1.1",
"ts-transform-default-export": "^1.0.3",
"typescript": "~4.7.0"
}
}