ima-parse
Version:
Easy Simple Parser, that only requires a Grammar JSON to output an AST.
42 lines (41 loc) • 1.01 kB
JSON
{
"name": "ima-parse",
"version": "0.0.7",
"description": "Easy Simple Parser, that only requires a Grammar JSON to output an AST.",
"main": "lib/index.js",
"module": "lib/index.js",
"scripts": {
"ts:watch": "tsc -w -p tsconfig.json",
"build": "rm -rf lib && tsc -p tsconfig.json",
"test": "jest --coverage",
"test:watch": "jest --watch --coverage"
},
"author": "guidsdo <guidsdo@users.noreply.github.com>",
"homepage": "https://github.com/guidsdo/ima-parse",
"bugs": {
"url": "https://github.com/guidsdo/ima-parse/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guidsdo/ima-parse.git"
},
"license": "Apache-2.0",
"dependencies": {
"prettier": "^2.8.1",
"typescript": "^4.9.4"
},
"devDependencies": {
"@types/jest": "^29.2.6",
"@types/node": "^18.11.18",
"jest": "^29.3.1",
"ts-jest": "^29.0.5"
},
"keywords": [
"parser",
"grammar",
"easy",
"AST",
"JSON",
"typescript"
]
}