credl-parser-evaluator
Version:
TypeScript-based CREDL Parser and Evaluator that processes CREDL files and outputs complete Intermediate Representations
79 lines (78 loc) • 2.22 kB
JSON
{
"name": "credl-parser-evaluator",
"version": "1.0.1",
"description": "TypeScript-based CREDL Parser and Evaluator that processes CREDL files and outputs complete Intermediate Representations",
"main": "dist/api/index.js",
"types": "dist/api/index.d.ts",
"bin": {
"credl": "dist/bin/credl.js"
},
"scripts": {
"build": "tsc && chmod +x dist/bin/credl.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:cli": "jest src/cli/ --testPathPattern=\\.test\\.(ts|js)$",
"dev": "tsc --watch",
"dev:cli": "npm run build && npm link",
"clean": "rm -rf dist",
"lint": "eslint src/**/*.ts bin/**/*.ts",
"format": "prettier --write src/**/*.ts bin/**/*.ts",
"cli:help": "npm run build && ./dist/bin/credl.js --help",
"cli:test-local": "npm run build && ./dist/bin/credl.js",
"cli:install": "npm run build && npm link",
"cli:uninstall": "npm unlink credl",
"prepack": "npm run clean && npm run build && npm test",
"prepublishOnly": "npm run prepack"
},
"keywords": [
"credl",
"commercial-real-estate",
"parser",
"typescript",
"yaml",
"financial-modeling"
],
"author": "CREDL Development Team",
"license": "MIT",
"dependencies": {
"@types/glob": "^8.1.0",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"glob": "^11.0.3",
"inquirer": "^12.6.3",
"ora": "^8.2.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/inquirer": "^9.0.8",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"memfs": "^4.17.2",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"files": [
"dist/**/*",
"README.md",
"examples/*.credl",
"examples/README.md",
"docs/API_REFERENCE.md",
"docs/CLI_REFERENCE.md",
"docs/CLI_EXAMPLES.md",
"docs/USAGE_EXAMPLES.md",
"docs/CREDL_Specification_v0.2_COMPLETE.md"
],
"repository": {
"type": "git",
"url": "https://github.com/bizarc/credl.git"
},
"engines": {
"node": ">=16.0.0"
}
}