quickmathjs
Version:
A simple web-based plaintext calculator harnessing the power of math.js for intuitive free-form calculations. Now with a command-line interface (CLI) for testing purposes.
56 lines (55 loc) • 1.39 kB
JSON
{
"name": "quickmathjs",
"version": "2.2.4",
"description": "A simple web-based plaintext calculator harnessing the power of math.js for intuitive free-form calculations. Now with a command-line interface (CLI) for testing purposes.",
"main": "calculator.js",
"bin": {
"quickmath": "./quickmath.js"
},
"scripts": {
"start": "node quickmath --web",
"debug": "node --inspect=5858 quickmath.js --test",
"test": "node quickmath.js --test",
"version": "node quickmath.js --version",
"help": "node quickmath.js --help",
"web": "node quickmath.js --web"
},
"repository": {
"type": "git",
"url": "https://github.com/mofosyne/QuickMathJS.git"
},
"keywords": [
"calculator",
"math.js",
"CLI",
"web"
],
"author": "Brian Khuu <mofosyne@gmail.com>",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/mofosyne/QuickMathJS/issues"
},
"homepage": "https://github.com/mofosyne/QuickMathJS",
"dependencies": {
"colors": "^1.4.0",
"diff": "^8.0.2",
"express": "^5.1.0",
"mathjs": "^14.5.2",
"opn": "^6.0.0",
"quickmathjs": "^2.2.2"
},
"files": [
"calculator.js",
"quickmath.js",
"LICENSE",
"readme.md",
"testcases.md",
"userexamples.md",
"index.html",
"script.js",
"style.css",
"logo.ico",
"logo.png",
"math.min.js"
]
}