UNPKG

mathjslab

Version:

MathJSLab - Interpreter with language syntax like MATLAB/Octave

74 lines (73 loc) 2.06 kB
{ "name": "mathjslab", "version": "1.0.8", "description": "MathJSLab - Interpreter with language syntax like MATLAB/Octave", "main": "dist/mathjslab.js", "types": "dist/src/index.d.ts", "repository": { "type": "git", "url": "git+https://github.com/sergiolindau/mathjslab.git" }, "keywords": [ "mathematics", "math", "MATLAB", "Octave", "MathML", "interpreter", "parser", "yacc", "bison", "lex", "flex", "jison" ], "author": "Sergio Lindau <sergiolindau@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/sergiolindau/mathjslab/issues" }, "homepage": "https://github.com/sergiolindau/mathjslab#readme", "scripts": { "git:add:all": "git add .", "git:commit:initial": "git commit -m \"Initial Commit\"", "git:push": "git push", "git:add:commit:push": "npm run git:add:all && npm run git:commit:initial && npm run git:push", "update": "npx ncu -u", "lint": "eslint \"**/*.ts{,x}\" --fix", "format": "prettier --write \"**/*.ts\"", "format:lint": "npm run format && npm run lint", "prebuild:parser": "rimraf src/parser.js", "build:parser": "jison src/parser.jison -o src/parser.js", "prebuild": "npm run build:parser", "build": "webpack --mode production", "clean": "rimraf dist src/parser.js", "publish-mathjslab": "npm publish --access public" }, "dependencies": { "decimal.js": "^10.4.3" }, "devDependencies": { "@types/node": "^20.5.1", "@types/webpack": "^5.28.1", "@typescript-eslint/eslint-plugin": "^6.4.0", "eslint": "^8.47.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-import": "^2.28.0", "eslint-plugin-prettier": "^5.0.0", "jison": "^0.4.18", "lint-staged": "^14.0.0", "prettier": "^3.0.1", "rimraf": "^5.0.1", "ts-loader": "^9.4.4", "ts-node": "^10.9.1", "typescript": "^5.1.6", "webpack": "^5.88.2", "webpack-cli": "^5.1.4" }, "browser": { "fs": false, "os": false, "path": false } }