forked from asnunes/mathml-to-latex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·52 lines (52 loc) · 1.43 KB
/
package.json
File metadata and controls
executable file
·52 lines (52 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "mathml-to-latex",
"version": "1.0.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": "24.9.0",
"@types/xmldom": "^0.1.30",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"eslint": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"git-commit-msg-linter": "^2.7.0",
"husky": "^4.3.0",
"jest": "24.9.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.1",
"ts-jest": "^26.3.0",
"ts-loader": "^8.0.4",
"typescript": "^4.0.2"
},
"dependencies": {
"xmldom": "^0.3.0"
}
}