forked from mehdisadeghi/react-mathjax-preview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.4 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
{
"name": "react-mathjax-preview",
"version": "2.1.3",
"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",
"react-dom": "^16"
},
"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/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@parcel/optimizer-htmlnano": "2.0.0-nightly.617",
"@parcel/packager-html": "2.0.0-nightly.617",
"@parcel/transformer-html": "2.0.0-nightly.617",
"@parcel/transformer-posthtml": "2.0.0-nightly.617",
"expect": "^25.1.0",
"jest": "^25",
"parcel": "^2.0.0-beta.1",
"prop-types": "^15",
"react": "^16",
"react-dom": "^16"
},
"dependencies": {
"dompurify": "^2.0.8"
},
"targets": {
"main": {},
"demo": {}
}
}