34 lines
838 B
JSON
34 lines
838 B
JSON
{
|
|
"name": "graphmatch",
|
|
"repository": "github:fabiospampinato/graphmatch",
|
|
"description": "A low-level utility for matching a string against a directed acyclic graph of regexes.",
|
|
"version": "1.1.0",
|
|
"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"
|
|
}
|
|
}
|