forked from talyssonoc/react-katex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.32 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.32 KB
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
{
"name": "react-katex",
"version": "0.0.3",
"description": "Display math in TeX with KaTeX and ReactJS",
"keywords": [
"react",
"tex",
"latex",
"math",
"katex"
],
"homepage": "https://github.com/talyssonoc/react-katex",
"main": "dist/react-katex",
"author": {
"name": "Talysson",
"email": "talyssonoc@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/talyssonoc/react-katex.git"
},
"bugs": {
"url": "https://github.com/talyssonoc/react-katex/issues"
},
"license": "MIT",
"scripts": {
"build": "gulp build",
"test": "gulp test --harmony"
},
"devDependencies": {
"gulp": "^3.8.11",
"gulp-clean": "^0.3.1",
"gulp-concat": "^2.5.2",
"gulp-jest": "^0.4.0",
"gulp-jshint": "^1.10.0",
"gulp-react": "^3.0.1",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.2.0",
"gulp-umd": "^0.1.3",
"react-tools": "^0.13.2"
},
"jest": {
"scriptPreprocessor": "<rootDir>/test/support/preprocessor.js",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/katex-build"
],
"testDirectoryName": "test",
"testPathIgnorePatterns": [
"node_modules",
"test/support"
]
},
"dependencies": {
"katex-build": "^0.2.0",
"react": "^0.13.2"
}
}