math-expression-evaluator
Version:
A flexible math expression evaluator
67 lines (66 loc) • 1.83 kB
JSON
{
"name": "math-expression-evaluator",
"version": "2.0.7",
"description": "A flexible math expression evaluator",
"main": "dist/es/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"test": "mocha",
"prepare": "husky install",
"build:code:watch": "rollup -c -w",
"build:code": "rollup -c",
"build:types:watch": "tsc --watch --project ./tsconfig.types.json",
"build:types": "tsc --project ./tsconfig.types.json",
"build:watch": "run-p build:code:watch build:types:watch",
"build": "run-p build:code build:types"
},
"repository": {
"type": "git",
"url": "https://github.com/redhivesoftware/math-expression-evaluator.git"
},
"files": [
"src",
"dist"
],
"keywords": [
"math",
"expression",
"evaluator",
"parser"
],
"author": "bugwheels94<bugwheels94@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/redhivesoftware/math-expression-evaluator/issues"
},
"homepage": "https://github.com/redhivesoftware/math-expression-evaluator#readme",
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^6.6.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"fast-glob": "^3.2.12",
"husky": "^7.0.4",
"mocha": "^2.2.5",
"npm-run-all": "^4.1.5",
"replace": "^1.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^19.0.2",
"typescript": "^4.9.4",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}