UNPKG

mathml-to-latex

Version:

A JavaScript tool to convert mathml string to LaTeX string

54 lines (53 loc) 1.52 kB
{ "name": "mathml-to-latex", "version": "1.5.0", "description": "A JavaScript tool to convert mathml string to LaTeX string", "main": "dist/bundle.min.js", "types": "dist/index.d.ts", "scripts": { "prebuild": "rm -rf ./dist", "build": "webpack --devtool source-map --mode production", "watch": "tsc -w", "lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix", "test": "jest --passWithNoTests --noStackTrace --runInBand", "test:verbose": "jest --passWithNoTests --runInBand", "test:watch": "npm run test -- --watch" }, "repository": { "type": "git", "url": "git+https://github.com/asnunes/mathml-to-latex.git" }, "keywords": [ "mathml", "latex", "convert", "parser", "mathml-to-latex" ], "author": "Alexandre Nunes", "license": "MIT", "bugs": { "url": "https://github.com/asnunes/mathml-to-latex/issues" }, "homepage": "https://github.com/asnunes/mathml-to-latex#readme", "devDependencies": { "@types/jest": "29.5.12", "@typescript-eslint/eslint-plugin": "^7.6.0", "@typescript-eslint/parser": "^7.6.0", "eslint": "^8.56.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.1.3", "git-commit-msg-linter": "^5.0.7", "jest": "29.7.0", "lint-staged": "^15.2.2", "prettier": "3.2.5", "ts-jest": "^29.1.2", "ts-loader": "^9.5.1", "typescript": "^5.4.5", "webpack": "^5.91.0", "webpack-cli": "^5.1.4" }, "dependencies": { "@xmldom/xmldom": "^0.8.10" } }