forked from asnunes/mathml-to-latex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·55 lines (55 loc) · 1.63 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
54
55
{
"name": "@pie-framework/mathml-to-latex",
"version": "1.4.3",
"description": "A JavaScript tool to convert mathml string to LaTeX string. This is a forked repo.",
"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",
"link-build": "yarn build && yarn unlink || yarn link"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pie-framework/mathml-to-latex.git"
},
"keywords": [
"mathml",
"latex",
"convert",
"parser",
"mathml-to-latex"
],
"author": "Alexandre Nunes",
"license": "MIT",
"bugs": {
"url": "https://github.com/pie-framework/mathml-to-latex/issues"
},
"homepage": "https://github.com/pie-framework/mathml-to-latex#readme",
"devDependencies": {
"@types/jest": "26.0.20",
"@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": "29.6.2",
"lint-staged": "^10.5.3",
"prettier": "2.2.1",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.10"
}
}