-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
executable file
·53 lines (53 loc) · 1.49 KB
/
package.json
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
53
{
"name": "mathml-to-latex",
"version": "1.4.3",
"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"
}
}