-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
61 lines (61 loc) · 1.39 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
{
"name": "react-mathjax-preview",
"version": "2.2.1",
"description": "The MathJax React component you were looking for.",
"author": "Mehdi Sadeghi",
"homepage": "https://github.com/mehdisadeghi/react-mathjax-preview",
"license": "MIT",
"repository": "https://github.com/mehdisadeghi/react-mathjax-preview",
"keywords": [
"react",
"react-component",
"mathjax",
"tex",
"asciimath",
"mathml"
],
"main": "dist/index.js",
"files": [
"dist/index.*"
],
"peerDependencies": {
"prop-types": "^15",
"react": "^16 || ^17",
"react-dom": "^16 || ^17"
},
"scripts": {
"start": "parcel serve -p 3000 index.html",
"build": "parcel build --target main --no-optimize index.jsx",
"build:demo": "parcel build --target demo --no-optimize index.html --dist-dir dist/demo",
"test": "jest"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"babel-jest": "^27.5.1",
"jest": "^27.5.1",
"parcel": "^2.3.2",
"prop-types": "^15",
"react": "^16 || ^17",
"react-dom": "^16 || ^17"
},
"dependencies": {
"dompurify": "^2.0.8"
},
"targets": {
"main": {},
"demo": {}
},
"jest": {
"transform": {
"\\.[jt]sx?$": "babel-jest"
},
"testEnvironment": "jsdom"
},
"babel": {
"presets": [
"@babel/preset-react",
"@babel/preset-env"
]
}
}