UNPKG

@fauton/cfg

Version:

A package to work with context free grammars and LL1 parsers

40 lines 1.04 kB
{ "name": "@fauton/cfg", "version": "0.0.10", "description": "A package to work with context free grammars and LL1 parsers", "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist/*" ], "scripts": { "prebuild": "del-cli ./dist", "prepublishOnly": "npm run lint && npm run build && npm run test", "build": "tsc --sourceMap false", "build:watch": "tsc -w", "lint": "eslint \"./libs/**/*.{tsx,ts}\"", "lint:fix": "eslint \"./libs/**/*.{tsx,ts}\"", "format": "prettier ./libs/**/*.{ts,js} --write", "test": "jest --runInBand" }, "keywords": [ "context-free-grammar", "context-free-language", "cyk-parse", "cnf", "ll1-parse-table" ], "author": "Safwan Shaheer <devorein00@gmail.com>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/Devorein/fauton.git" }, "publishConfig": { "access": "public" }, "dependencies": { "@datastructures-js/linked-list": "^5.1.1" }, "devDependencies": {} }