Skip to content

Commit 84569ad

Browse files
committed
Updates dev deps.
1 parent 28e0e83 commit 84569ad

File tree

2 files changed

+271
-207
lines changed

2 files changed

+271
-207
lines changed

package.json

Lines changed: 39 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,23 @@
11
{
22
"name": "react-async-bootstrapper",
33
"version": "2.1.0",
4-
"description":
5-
"Execute a bootstrap method on your React/Preact components. Useful for data prefetching and other activities.",
4+
"description": "Execute a bootstrap method on your React/Preact components. Useful for data prefetching and other activities.",
65
"license": "MIT",
76
"main": "dist/react-async-bootstrapper.js",
8-
"files": ["*.js", "*.md", "dist"],
7+
"files": [
8+
"*.js",
9+
"*.md",
10+
"dist"
11+
],
912
"repository": {
1013
"type": "git",
1114
"url": "https://github.com/ctrlplusb/react-async-bootstrapper.git"
1215
},
1316
"homepage": "https://github.com/ctrlplusb/react-async-bootstrapper#readme",
1417
"author": "Sean Matheson <sean@ctrlplusb.com>",
15-
"keywords": ["library"],
18+
"keywords": [
19+
"library"
20+
],
1621
"scripts": {
1722
"build": "node ./tools/scripts/build.js",
1823
"clean": "rimraf ./dist && rimraf ./coverage",
@@ -32,7 +37,7 @@
3237
"babel-cli": "^6.26.0",
3338
"babel-core": "^6.26.0",
3439
"babel-eslint": "^8.0.1",
35-
"babel-jest": "^21.2.0",
40+
"babel-jest": "^22.4.3",
3641
"babel-loader": "^7.1.2",
3742
"babel-plugin-external-helpers": "^6.22.0",
3843
"babel-polyfill": "^6.26.0",
@@ -42,11 +47,11 @@
4247
"babel-preset-stage-3": "^6.24.1",
4348
"babel-register": "^6.26.0",
4449
"change-case": "^3.0.2",
45-
"codecov": "^2.3.0",
50+
"codecov": "^3.0.0",
4651
"cross-env": "^5.0.5",
4752
"enzyme": "^3.1.0",
4853
"enzyme-to-json": "^3.1.2",
49-
"eslint": "^4.8.0",
54+
"eslint": "^4.19.1",
5055
"eslint-config-airbnb": "^16.0.0",
5156
"eslint-config-prettier": "^2.6.0",
5257
"eslint-plugin-import": "^2.7.0",
@@ -55,7 +60,7 @@
5560
"gzip-size": "^4.0.0",
5661
"husky": "^0.14.3",
5762
"in-publish": "2.0.0",
58-
"jest": "^22.4.2",
63+
"jest": "^22.4.3",
5964
"lint-staged": "^7.0.0",
6065
"prettier": "^1.7.4",
6166
"pretty-bytes": "4.0.2",
@@ -73,9 +78,15 @@
7378
"react-tree-walker": "^4.0.2"
7479
},
7580
"jest": {
76-
"collectCoverageFrom": ["src/**/*.{js,jsx}"],
77-
"snapshotSerializers": ["<rootDir>/node_modules/enzyme-to-json/serializer"],
78-
"testPathIgnorePatterns": ["<rootDir>/(coverage|dist|node_modules|tools)/"]
81+
"collectCoverageFrom": [
82+
"src/**/*.{js,jsx}"
83+
],
84+
"snapshotSerializers": [
85+
"<rootDir>/node_modules/enzyme-to-json/serializer"
86+
],
87+
"testPathIgnorePatterns": [
88+
"<rootDir>/(coverage|dist|node_modules|tools)/"
89+
]
7990
},
8091
"eslintConfig": {
8192
"root": true,
@@ -86,7 +97,10 @@
8697
"node": true,
8798
"jest": true
8899
},
89-
"extends": ["airbnb", "prettier"],
100+
"extends": [
101+
"airbnb",
102+
"prettier"
103+
],
90104
"rules": {
91105
"camelcase": 0,
92106
"import/prefer-default-export": 0,
@@ -95,19 +109,29 @@
95109
"no-underscore-dangle": 0,
96110
"react/no-array-index-key": 0,
97111
"react/react-in-jsx-scope": 0,
98-
"semi": [2, "never"],
112+
"semi": [
113+
2,
114+
"never"
115+
],
99116
"react/forbid-prop-types": 0,
100117
"react/jsx-filename-extension": 0,
101118
"react/sort-comp": 0
102119
}
103120
},
104-
"eslintIgnore": ["node_modules/", "dist/", "coverage/"],
121+
"eslintIgnore": [
122+
"node_modules/",
123+
"dist/",
124+
"coverage/"
125+
],
105126
"prettier": {
106127
"semi": false,
107128
"singleQuote": true,
108129
"trailingComma": "all"
109130
},
110131
"lint-staged": {
111-
"*.js": ["prettier --write \"src/**/*.js\"", "git add"]
132+
"*.js": [
133+
"prettier --write \"src/**/*.js\"",
134+
"git add"
135+
]
112136
}
113137
}

0 commit comments

Comments
 (0)