-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
46 lines (46 loc) · 981 Bytes
/
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
{
"name": "react-mathlive",
"version": "3.0.5-preview.1",
"description": "An interactive math input for react.",
"main": "dist/index.js",
"files": [
"/dist"
],
"types": "dist/index.d.ts",
"repository": {
"url": "https://github.com/concludio/react-mathlive"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "jest --coverage",
"coverage": "jest --coverage --coverageReporters=text-lcov | coveralls"
},
"author": "Fabian Grewing",
"license": "MIT",
"keywords": [
"react",
"math",
"editor",
"input",
"interactive",
"wysiwyg",
"latex"
],
"devDependencies": {
"@testing-library/react": "^8.0.7",
"@types/jest": "^24.0.16",
"@types/react": "^16.7.22",
"@types/react-dom": "^16.0.11",
"coveralls": "^3.0.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.2.0",
"ts-jest": "^25.3.0",
"typescript": "^3.9.5"
},
"dependencies": {
"mathlive": ">= 0.55.0 < 1",
"react": "^16.7.0",
"react-dom": "^16.7.0"
}
}