forked from hackerwins/react-summernote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.43 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
{
"name": "react-summernote",
"version": "2.0.0-rc.9",
"description": "Summernote (Super simple WYSIWYG editor) adaptation for react",
"main": "./dist/react-summernote.js",
"repository": {
"type": "git",
"url": "https://github.com/Vnkitaev/react-summernote.git"
},
"scripts": {
"build": "webpack --config ./webpack.config.js"
},
"keywords": [
"summernote",
"react-summernote",
"react-wysiwyg",
"rich-text-editor",
"WYSIWYG"
],
"files": [
"dist",
"src",
"lang"
],
"author": {
"name": "Ivan Kitaev",
"email": "[email protected]"
},
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"summernote": "^0.8.2",
"codemirror": "^5.23.0",
"node-libs-browser": "2.0.0"
},
"peerDependencies": {
"jquery": "^2.2.0 || ^3.0.0",
"bootstrap": "^3.3.6",
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"webpack": "2.2.1",
"babel-core": "6.23.1",
"babel-loader": "6.3.2",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.23.0",
"url-loader": "0.5.8",
"file-loader": "0.10.1",
"style-loader": "0.13.2",
"css-loader": "0.26.2",
"extract-text-webpack-plugin": "2.1.0",
"copy-webpack-plugin": "4.0.1",
"eslint": "3.17.0",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-react": "6.10.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0"
}
}