37 lines
879 B
JSON
Executable File
37 lines
879 B
JSON
Executable File
{
|
|
"name": "grammex",
|
|
"repository": "github:fabiospampinato/grammex",
|
|
"description": "A tiny, PEG-like system for building language grammars with regexes.",
|
|
"license": "MIT",
|
|
"version": "3.1.12",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"exports": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"sideEffects": false,
|
|
"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": [
|
|
"tiny",
|
|
"peg",
|
|
"regex",
|
|
"parsing",
|
|
"expression",
|
|
"grammar"
|
|
],
|
|
"devDependencies": {
|
|
"benchloop": "^2.1.1",
|
|
"fava": "^0.3.4",
|
|
"tsex": "^4.0.2",
|
|
"typescript": "^5.7.3"
|
|
}
|
|
}
|