63 lines
1.7 KiB
Plaintext
63 lines
1.7 KiB
Plaintext
{
|
|
"name": "wildcard-match",
|
|
"version": "5.1.2",
|
|
"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"
|
|
],
|
|
"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"
|
|
},
|
|
"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/[!_]*.js"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "npm run format"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^4.26.1",
|
|
"@typescript-eslint/parser": "^4.26.1",
|
|
"@wessberg/rollup-plugin-ts": "^1.3.5",
|
|
"benchmark": "^2.1.4",
|
|
"core-js": "^3.6.5",
|
|
"eslint": "^7.3.1",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"globrex": "^0.1.2",
|
|
"husky": "^4.2.5",
|
|
"matcher": "^4.0.0",
|
|
"picomatch": "^2.2.2",
|
|
"prettier": "^2.0.5",
|
|
"pta": "^0.1.3",
|
|
"rollup": "^2.32.0",
|
|
"rollup-plugin-cleanup": "^3.2.1",
|
|
"rollup-plugin-delete": "^2.0.0",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"ts-node": "^9.0.0",
|
|
"ts-transform-default-export": "^1.0.2",
|
|
"typescript": "^4.3.2"
|
|
}
|
|
}
|