-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
{
"name": "mathjax-loader",
"version": "0.2.0",
"description": "Webpack loader to transform TeX, MathML, and AsciiMath files to SVGs via MathJax",
"scripts": {
"clean": "if [ -d \"dist\" ]; then rm -r \"dist\"; fi",
"prebuild": "npm run clean",
"build": "NODE_ENV=production babel src -d dist",
"test": "jest"
},
"files": [
"dist"
],
"main": "dist/loader.js",
"repository": {
"type": "git",
"url": "git+/~https://github.com/nickgirardo/mathjax-loader.git"
},
"keywords": [
"webpack",
"mathjax",
"tex",
"mathml",
"asciimath"
],
"author": "Nick Girardo <nickgirardo@gmail.com> (https://nickgirardo.com)",
"license": "GPL-3.0",
"bugs": {
"url": "/~https://github.com/nickgirardo/mathjax-loader/issues"
},
"homepage": "/~https://github.com/nickgirardo/mathjax-loader#readme",
"dependencies": {
"loader-utils": "^2.0.0",
"mathjax-full": "^3.2.0"
},
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.4",
"@babel/preset-env": "^7.15.4",
"@svgr/webpack": "^5.5.0",
"babel-jest": "^27.1.0",
"jest": "^27.1.0",
"memfs": "^3.2.4",
"react": "^17.0.2",
"webpack": "^5.51.2"
}
}