Skip to content

Commit dced2c0

Browse files
committed
update dependencies
1 parent 80e4724 commit dced2c0

File tree

2 files changed

+22
-14
lines changed

2 files changed

+22
-14
lines changed

.eslintrc

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
{
2-
"extends": "eslint-config-airbnb",
2+
"extends": "airbnb",
3+
"env": {
4+
"browser": true
5+
},
36
"rules": {
7+
"react/forbid-prop-types": [2, { "forbid": ["any"] }],
8+
"id-length": [1, { "min": 1 }],
49
"comma-dangle": 0,
10+
"arrow-parens": ["error", "as-needed"],
11+
"consistent-return": [2, { "treatUndefinedAsUnspecified": true }],
12+
"class-methods-use-this:": 0,
513
"max-len": [2, 200, 2, {
614
"ignoreUrls": true,
715
"ignoreComments": false

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-summernote",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "Summernote (Super simple WYSIWYG editor) adaptation for react",
55
"main": "./dist/react-summernote.js",
66
"repository": {
@@ -39,21 +39,21 @@
3939
"react-dom": "*"
4040
},
4141
"devDependencies": {
42-
"webpack": "1.13.1",
43-
"babel-core": "6.10.4",
44-
"babel-loader": "6.2.4",
45-
"babel-preset-es2015": "6.9.0",
46-
"babel-preset-react": "6.11.1",
42+
"webpack": "1.13.3",
43+
"babel-core": "6.18.2",
44+
"babel-loader": "6.2.7",
45+
"babel-preset-es2015": "6.18.0",
46+
"babel-preset-react": "6.16.0",
4747
"url-loader": "0.5.7",
4848
"file-loader": "0.9.0",
4949
"style-loader": "0.13.1",
50-
"css-loader": "0.23.1",
50+
"css-loader": "0.25.0",
5151
"extract-text-webpack-plugin": "1.0.1",
52-
"copy-webpack-plugin": "3.0.1",
53-
"eslint": "3.0.1",
54-
"eslint-config-airbnb": "9.0.1",
55-
"eslint-plugin-react": "5.2.2",
56-
"eslint-plugin-import": "1.10.2",
57-
"eslint-plugin-jsx-a11y": "1.5.5"
52+
"copy-webpack-plugin": "4.0.0",
53+
"eslint": "3.10.0",
54+
"eslint-config-airbnb": "13.0.0",
55+
"eslint-plugin-react": "6.6.0",
56+
"eslint-plugin-import": "2.2.0",
57+
"eslint-plugin-jsx-a11y": "2.2.3"
5858
}
5959
}

0 commit comments

Comments
 (0)