-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.37 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
{
"name": "latex-to-speech",
"version": "0.0.4",
"description": "Latex to speech converter using SRE.",
"main": "index.js",
"scripts": {
"build:tex2mml": "cd tex2mml; node ../node_modules/mathjax-full/components/bin/makeAll",
"postinstall": "cd node_modules/mathjax-full; npm install mhchemparser",
"build": "npm run build:tex2mml",
"publish": "npm install; npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"latex-to-speech": "bin/latex-to-speech"
},
"repository": {
"type": "git",
"url": "git+https://github.com/speech-rule-engine/sre-latex.git"
},
"keywords": [
"LaTeX",
"Speech",
"Accessibility",
"Mathematics"
],
"author": "Volker Sorge <[email protected]> (http://www.cs.bham.ac.uk/~vxs)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/speech-rule-engine/sre-latex/issues"
},
"homepage": "https://github.com/speech-rule-engine/sre-latex#readme",
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"babel-loader": "^8.2.5",
"mathjax-full": "^3.2.2",
"terser-webpack-plugin": "^5.3.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"speech-rule-engine": "^4.0.7",
"commander": "9.4.0"
},
"files": [
"index.js",
"LICENSE",
"README.md",
"bin/"
]
}