-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.55 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.55 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-markdown-plus",
"version": "0.1.1-a",
"description": "A react component to render markdown using markdown-it.",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config exam/webpack.config.js --progress --colors --inline",
"build": "npm run build:babel",
"build:babel": "babel src --out-dir lib --presets=es2015,react,stage-0",
"release": "npm run build && npm publish",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git@github.com:ChouUn/react-markdown-plus.git"
},
"keywords": [
"react",
"component",
"markdown",
"markdown-it"
],
"author": {
"name": "ChouUn",
"email": "ChouUnSoft@gmail.com"
},
"license": "MIT",
"peerDependencies": {
"react": "^15.4.2"
},
"dependencies": {
"asciimath-to-latex": "^0.3.0",
"github-markdown-css": "^2.4.1",
"katex": "^0.7.1",
"lodash": "^4.17.4",
"markdown-it": "^8.2.2",
"prismjs-polyfill": "^0.2.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"css-loader": "^0.26.1",
"file-loader": "^0.10.0",
"json-loader": "^0.5.4",
"raw-loader": "^0.5.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
}
}