jso-ee
Version:
JavaScript Object Expression Evaluator
44 lines (43 loc) • 1.05 kB
JSON
{
"name": "jso-ee",
"version": "0.26.0-development",
"description": "JavaScript Object Expression Evaluator",
"main": "src/index.js",
"scripts": {
"clean": "rm -rf ./src/parser.js",
"build": "jison ./grammar/parser.jison ./grammar/lexer.jisonlex -o ./src/parser.js",
"test": "mocha --slow 0 test"
},
"repository": {
"type": "git",
"url": "https://github.com/hari-narasimhan/jso-ee.git"
},
"keywords": [
"JavaScript",
"expression",
"evaluator",
"rule",
"engine"
],
"author": "Hari Narasimhan <harin76@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hari-narasimhan/jso-ee/issues"
},
"homepage": "https://github.com/hari-narasimhan/jso-ee#readme",
"devDependencies": {
"jison": "0.4.18",
"mocha": "9.1.3"
},
"dependencies": {
"@segment/isodate": "^1.0.3",
"dateformat": "^3.0.3",
"lodash": "4.17.21",
"mathjs": "10.0.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}