UNPKG

@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.

50 lines (49 loc) 1.13 kB
{ "name": "@stordata/grammars", "version":"1.0.20260714021213", "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": "mocha tests/**/*.spec.js", "lint": "eslint 'src/**/*.js' 'tests/**/*.js'", "antlr": ".scripts/antlr.sh", "clean": "rm dist/ -fR; rm generated/ -fR" }, "engines": { "node": ">= 24" }, "dependencies": { "antlr4": "4.13.2" }, "devDependencies": { "@eslint/config-helpers": "0.6.0", "@stordata/eslint-config": "2.0.20260714020726", "chai": "6.2.2", "eslint": "9.39.4", "eslint-plugin-import": "2.32.0", "mocha": "11.7.6", "unbuild": "3.6.1" } }