cfg-first-follow
Version:
Calculate FIRST and FOLLOW set of a Context Free Grammar symbol
55 lines (54 loc) • 1.39 kB
JSON
{
"name": "cfg-first-follow",
"version": "0.1.0",
"description": "Calculate FIRST and FOLLOW set of a Context Free Grammar symbol",
"author": {
"name": "Shubham Parihar",
"email": "shubhamparihar391@gmail.com",
"url": "https://github.com/iShibi"
},
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"build:dev": "tsc -w",
"test": "vitest",
"prepare": "husky install",
"lint:check": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --ext .js,.ts --fix",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-angular": "^16.2.3",
"@types/node": "^17.0.25",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.4.0",
"prettier": "^2.6.2",
"typescript": "^4.6.3",
"vitest": "^0.9.4"
},
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/iShibi/cfg-first-follow.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/iShibi/cfg-first-follow/issues"
},
"homepage": "https://github.com/iShibi/cfg-first-follow#readme",
"keywords": [
"first-set",
"follow-set",
"context-free-grammar",
"compiler-design"
]
}