-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
93 lines (93 loc) · 2.35 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@matejmazur/react-katex",
"version": "3.1.2",
"description": "Display math in TeX with KaTeX and ReactJS",
"keywords": [
"react",
"tex",
"latex",
"math",
"katex"
],
"homepage": "https://github.com/MatejBransky/react-katex",
"source": "src/index.tsx",
"main": "dist/react-katex.js",
"module": "dist/react-katex.m.js",
"esmodule": "dist/react-katex.modern.js",
"unpkg": "dist/react-katex.umd.js",
"types": "dist/index.d.ts",
"author": {
"name": "Matej Bransky",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:MatejBransky/react-katex.git"
},
"bugs": {
"url": "https://github.com/MatejBransky/react-katex/issues"
},
"license": "MIT",
"scripts": {
"start": "cd demo && yarn start",
"build": "rimraf dist && microbundle --jsx React.createElement --name TeX",
"dev": "microbundle watch",
"format": "prettier --write .",
"lint": "eslint .",
"types": "tsc -p tsconfig.json --noEmit",
"test": "jest",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=12",
"yarn": ">=1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{index,index.spec,demo/index}.js": [
"prettier --write",
"eslint",
"git add"
]
},
"devDependencies": {
"@matejbransky/eslint-config": "1.0.0-alpha.2",
"@matejbransky/jest-preset": "1.0.0-alpha.2",
"@matejbransky/prettier-config": "1.0.0-alpha.2",
"@matejbransky/typescript-config": "1.0.0-alpha.1",
"@testing-library/jest-dom": "5.11.9",
"@testing-library/react": "10.4.9",
"@types/katex": "0.11.0",
"@types/react": "16.14.5",
"@types/react-dom": "16.9.11",
"eslint": "6.8.0",
"husky": "4.3.8",
"jest": "26.6.3",
"katex": "0.12.0",
"lint-staged": "10.5.4",
"microbundle": "0.12.4",
"prettier": "2.2.1",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-error-boundary": "2.3.2",
"rimraf": "3.0.2",
"snapshot-diff": "0.8.1",
"typescript": "3.9.9"
},
"peerDependencies": {
"katex": ">=0.9",
"react": ">=16"
},
"jest": {
"preset": "@matejbransky/jest-preset",
"testEnvironment": "jsdom"
},
"eslintConfig": {
"extends": "@matejbransky/eslint-config"
},
"prettier": "@matejbransky/prettier-config"
}