mathml-to-latex/package.json
2021-04-11 18:38:45 -03:00

53 lines
1.4 KiB
JSON
Executable File

{
"name": "mathml-to-latex",
"version": "1.1.0",
"description": "A JavaScript tool to convert mathml string to LaTeX string",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf ./dist && tsc",
"watch": "tsc -w",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"test": "jest --passWithNoTests --silent --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": "26.0.20",
"@types/xmldom": "^0.1.30",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"git-commit-msg-linter": "^3.0.0",
"husky": "^4.3.7",
"jest": "26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3"
},
"dependencies": {
"xmldom": "^0.4.0"
}
}