forked from HarryChen0506/react-markdown-editor-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.51 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
{
"name": "react-markdown-editor-lite",
"version": "0.4.5",
"description": "a light-weight Markdown editor based on React",
"main": "./lib/index.js",
"directories": {
"example": "example",
"lib": "lib",
"test": "test"
},
"scripts": {
"start": "webpack --config webpack.config.js",
"dev": "webpack-dev-server --host 0.0.0.0 --open http://localhost:8080",
"prod": "webpack --config webpack.prod.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HarryChen0506/react-markdown-editor-lite.git"
},
"keywords": [
"markdown",
"html",
"editor",
"parser",
"react",
"component"
],
"author": "HarryChen",
"license": "MIT",
"bugs": {
"url": "https://github.com/HarryChen0506/react-markdown-editor-lite/issues"
},
"homepage": "https://github.com/HarryChen0506/react-markdown-editor-lite#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.4.7",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"chai": "^4.2.0",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^2.1.0",
"file-loader": "^3.0.1",
"highlight.js": "^9.15.6",
"html-webpack-plugin": "^3.2.0",
"karma": "^4.0.0",
"karma-chai": "^0.1.0",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-sinon": "^1.0.5",
"karma-webpack": "^3.0.5",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"markdown-it": "^8.4.2",
"markdown-it-abbr": "^1.0.4",
"markdown-it-deflist": "^2.0.3",
"markdown-it-emoji": "^1.4.0",
"markdown-it-footnote": "^3.0.1",
"markdown-it-ins": "^2.0.0",
"markdown-it-mark": "^2.0.0",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-task-lists": "^2.1.1",
"mocha": "^5.2.0",
"postcss-loader": "^2.1.6",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"sinon": "^7.2.3",
"sinon-chai": "^3.3.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {},
"browserslist": [
"defaults",
"not ie < 11",
"last 2 versions",
"> 1%",
"iOS 7",
"last 3 iOS versions"
]
}