ifc-expressions
Version:
Parsing and evaluation of IFC expressions
65 lines (64 loc) • 1.79 kB
JSON
{
"name": "ifc-expressions",
"version": "3.0.0",
"description": "Parsing and evaluation of IFC expressions",
"main": "dist/cjs/IfcExpression.js",
"module": "dist/mjs/IfcExpression.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"license": "Apache-2.0",
"types": "./dist/index.d.ts",
"files": [
"./dist/**/*",
"./dist/*"
],
"engines": {
"node": ">=14.16"
},
"scripts": {
"build-complete": "npm run format-apply && npm run build && npm run test",
"build": "npm run clean && npm run make-parser && npm run transpile",
"clean": "gulp clean",
"make-parser": "antlr-ng --generate-visitor --warnings-are-errors -Dlanguage=TypeScript --exact-output-dir -o src/gen/parser src/grammar/IfcExpression.g4",
"transpile": "gulp build",
"test": "jest --coverage",
"format-apply": "prettier --write .",
"lint": "eslint .",
"format-check": "prettier --check .",
"check": "npm run format-check && npm run lint"
},
"keywords": [
"IFC",
"Expressions",
"BIM",
"Formula"
],
"dependencies": {
"antlr4-c3": "^3.4.4",
"antlr4ng": "^3.0.16",
"decimal.js": "^10.4.3"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"antlr-ng": "^1.0.10",
"del": "^7.0.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"gulp": "^4.0.2",
"gulp-replace": "^1.1.4",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-uglify": "^3.0.2",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
}
}