Files
test/_node_modules/graphmatch/package.json
2026-02-20 16:06:40 +09:00

35 lines
858 B
JSON

{
"name": "graphmatch",
"repository": "github:fabiospampinato/graphmatch",
"description": "A low-level utility for matching a string against a directed acyclic graph of regexes.",
"license": "MIT",
"version": "1.1.1",
"type": "module",
"main": "dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"benchmark": "tsex benchmark",
"benchmark:watch": "tsex benchmark --watch",
"clean": "tsex clean",
"compile": "tsex compile",
"compile:watch": "tsex compile --watch",
"test": "tsex test",
"test:watch": "tsex test --watch",
"prepublishOnly": "tsex prepare"
},
"keywords": [
"regex",
"regexp",
"dag",
"graph",
"match"
],
"devDependencies": {
"benchloop": "^2.1.1",
"fava": "^0.3.5",
"tsex": "^4.0.2",
"typescript": "^5.9.3"
}
}