forked from talyssonoc/react-katex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.84 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
{
"name": "react-katex",
"version": "1.2.0",
"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.js",
"module": "src/index.js",
"scripts": {
"build": "npm run build-normal && npm run build-mini",
"build-normal": "rollup -c --environment NODE_ENV:production",
"build-mini": "rollup -c --environment MINIFY,NODE_ENV:production",
"test": "cross-env NODE_ENV=test nyc --reporter=html mocha",
"report-coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint {src,test}/*.js",
"prepublish": "npm run build"
},
"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",
"peerDependencies": {
"katex": "^0.7.0",
"prop-types": "^15.5.10",
"react": "^15.3.2"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-plugin-istanbul": "^4.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-react": "^6.24.1",
"chai": "^4.0.2",
"coveralls": "^2.13.1",
"cross-env": "^5.0.1",
"enzyme": "^2.9.1",
"eslint": "^4.1.1",
"eslint-plugin-react": "^7.1.0",
"katex": "^0.7.0",
"mocha": "^3.4.2",
"nyc": "^11.0.3",
"prop-types": "^15.5.10",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"rollup": "^0.43.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-uglify": "^2.0.1"
},
"nyc": {
"sourceMap": false,
"instrument": false
}
}