@stordata/grammars
Version:
A collection of ANTLR grammars used at Stordata. This project exists so that we can package the grammars (and various utilities) as a CommonJS module. The `antlr4` Javascript runtime is only available as an ES module at the time of writing.
48 lines (47 loc) • 1.06 kB
JSON
{
"name": "@stordata/grammars",
"version":"1.0.20250723180957",
"type": "module",
"main": "dist/index.cjs",
"exports": [
{
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
],
"repository": {
"type": "git",
"url": "ssh://git@gitlab.stordata.fr:2200/stordata/grammars.git"
},
"keywords": [
"antlr",
"stordata",
"grammars"
],
"author": "La team d'en bas <teamdenbas@stordata.fr>",
"license": "UNLICENCED",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "unbuild",
"test": "npx mocha tests/**/*.spec.js",
"lint": "npx eslint src/**/*.js tests/**/*.js",
"antlr": ".scripts/antlr.sh",
"clean": "rm dist/ -fR; rm generated/ -fR"
},
"engines": {
"node": ">= 22"
},
"dependencies": {
"antlr4": "4.13.2"
},
"devDependencies": {
"@stordata/eslint-config": "1.0.20241128103736",
"chai": "5.2.1",
"eslint": "8.57.0",
"mocha": "11.7.1",
"unbuild": "3.6.0"
}
}