Skip to content
This repository has been archived by the owner on Jun 8, 2023. It is now read-only.

Commit

Permalink
chore: Update dev dependencies
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Now requires Node 10
  • Loading branch information
tleunen committed Oct 19, 2020
1 parent 3de29df commit 6376546
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 18 deletions.
7 changes: 2 additions & 5 deletions .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,9 @@
"presets": [
["@babel/env", {
"targets": {
"node": 6
"node": 10
},
"loose": true,
"loose": true
}]
],
"plugins": [
["@babel/proposal-object-rest-spread", { "loose": true, "useBuiltIns": true }]
]
}
9 changes: 8 additions & 1 deletion .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
root: true

extends:
- "airbnb-base"
- "eslint:recommended"

parserOptions:
ecmaVersion: 2018
sourceType: 'module'

env:
node: true
21 changes: 9 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"url": "https://github.com/tleunen/eslint-import-resolver-babel-module.git"
},
"engines": {
"node": ">=6.0.0"
"node": ">=10.0.0"
},
"files": [
"lib"
Expand Down Expand Up @@ -36,18 +36,15 @@
"resolve": "^1.10.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.3.1",
"@babel/preset-env": "^7.3.1",
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"babel-core": "^7.0.0-0",
"babel-jest": "^24.0.0",
"babel-plugin-module-resolver": "^3.1.3",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^24.0.0",
"lodash": "^4.17.11",
"babel-jest": "^26.6.0",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^7.11.0",
"jest": "^26.6.0",
"lodash": "^4.17.20",
"standard-version": "^9.0.0"
},
"peerDependencies": {
Expand Down

0 comments on commit 6376546

Please sign in to comment.