{
  "name": "mathjslab",
  "version": "1.2.1",
  "description": "MathJSLab - An interpreter with language syntax like MATLAB®/Octave. ISBN 978-65-00-82338-7",
  "main": "lib/mathjslab.js",
  "types": "lib/src/lib.d.ts",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sergiolindau/mathjslab.git"
  },
  "keywords": [
    "mathematics",
    "math",
    "educational",
    "MATLAB",
    "Octave",
    "MathML",
    "interpreter",
    "parser",
    "grammar",
    "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": {
    "clean": "rimraf lib src/parser.js",
    "update": "npx ncu -u && npm install",
    "git:add": "git add .",
    "git:commit": "git commit -m \"Initial Commit\"",
    "git:push": "git push",
    "git:add:commit:push": "npm run git:add && npm run git:commit && npm run git:push",
    "npm:publish": "npm publish --access public",
    "add:commit:push:publish": "npm run git:add:commit:push && npm run npm:publish",
    "lint": "eslint \"**/*.ts{,x}\" --fix",
    "format": "prettier --write \"**/*.ts\"",
    "format:lint": "npm run format && npm run lint",
    "pretest": "npm run build:parser",
    "test": "jest --verbose",
    "test:watch": "jest --watch",
    "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",
    "do:all": "npm run clean && npm run update && npm run format:lint && npm run build && npm run add:commit:push:publish"
  },
  "dependencies": {
    "decimal.js": "^10.4.3"
  },
  "devDependencies": {
    "@types/debug": "^4.1.12",
    "@types/jest": "29.5.10",
    "@types/node": "^20.9.4",
    "@types/supertest": "^2.0.16",
    "@types/webpack": "^5.28.5",
    "@typescript-eslint/eslint-plugin": "^6.12.0",
    "eslint": "^8.54.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-import": "^2.29.0",
    "eslint-plugin-prettier": "^5.0.1",
    "jest": "29.7.0",
    "jison": "^0.4.18",
    "lint-staged": "^15.1.0",
    "prettier": "^3.1.0",
    "rimraf": "^5.0.5",
    "ts-jest": "29.1.1",
    "ts-loader": "^9.5.1",
    "ts-node": "^10.9.1",
    "typescript": "^5.3.2",
    "webpack": "^5.89.0",
    "webpack-cli": "^5.1.4"
  },
  "browser": {
    "fs": false,
    "os": false,
    "path": false
  },
  "jest": {
    "moduleFileExtensions": [
      "js",
      "json",
      "ts"
    ],
    "rootDir": ".",
    "testRegex": ".*\\.spec\\.ts$",
    "transform": {
      "^.+\\.(t|j)s$": "ts-jest"
    },
    "testEnvironment": "node"
  }
}
