forked from mathjax/MathJax-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.05 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "mathjax-full",
"version": "3.0.5",
"description": "Beautiful math in all browsers. MathJax is an open-source JavaScript display engine for LaTeX, MathML, and AsciiMath notation that works in all browsers. This package includes the source code as well as the packaged components.",
"license": "Apache-2.0",
"main": "components/src/node-main/node-main.js",
"files": [
"/es5",
"/js",
"/ts",
"/components",
"LICENSE",
"README.md",
"CONTRIBUTING.md",
"tsconfig.json",
"tslint.json"
],
"repository": {
"type": "git",
"url": "https://github.com/mathjax/Mathjax-src/"
},
"keywords": [
"MathJax",
"math",
"svg",
"HTML",
"MathML",
"TeX",
"AsciiMath"
],
"scripts": {
"clean:js": "npx rimraf js",
"clean:es5": "npx rimraf es5",
"clean:lib": "npx rimraf 'components/src/**/lib'",
"clean": "npm run --silent clean:js && npm run --silent clean:es5 && npm run --silent clean:lib",
"copy:mhchem": "npx copyfiles -u 1 'ts/input/tex/mhchem/mhchem_parser*' js",
"copy:mj2": "npx copyfiles -u 1 'ts/input/asciimath/mathjax2/**/*' js",
"precompile": "npm run --silent clean:js",
"compile": "npx tsc",
"postcompile": "npm run --silent copy:mhchem && npm run --silent copy:mj2",
"premake-components": "npm run --silent clean:es5 && npm run --silent clean:lib",
"make-components": "cd components && node bin/makeAll src | grep 'Building\\|Webpacking\\|Copying\\|npx'"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-loader": "^8.1.0",
"copyfiles": "^2.2.0",
"diff": "^4.0.2",
"rimraf": "^3.0.2",
"tape": "^4.13.2",
"tslint": "^6.1.1",
"tslint-jsdoc-rules": "^0.2.0",
"tslint-unix-formatter": "^0.2.0",
"typescript": "~3.8.3",
"typescript-tools": "^0.3.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"esm": "^3.2.25",
"mj-context-menu": "^0.2.2",
"speech-rule-engine": "^3.0.0-beta.10"
}
}