Skip to content

Commit

Permalink
Merge pull request #16 from altmetric/upgrade-dependencies
Browse files Browse the repository at this point in the history
Upgrade dev dependencies
  • Loading branch information
jbilbo authored Nov 18, 2024
2 parents 792dd3e + 103eba3 commit 6d4b724
Show file tree
Hide file tree
Showing 7 changed files with 7,859 additions and 3,029 deletions.
2 changes: 1 addition & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"presets": ["es2015"]
"presets": ["@babel/preset-env"]
}
15 changes: 9 additions & 6 deletions .eslintrc.js → .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
module.exports = {
{
"env": {
"es6": true,
"es2021": true,
"node": true,
"jest": true
},
"extends": "eslint:recommended",
"overrides": [
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"indent": [
"error",
Expand All @@ -25,8 +31,5 @@ module.exports = {
"no-console": [
"warn"
]
},
"parserOptions": {
"sourceType": "module"
}
};
}
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
cache: 'npm'

- name: Install dependencies
run: yarn install
run: npm install

- name: Run tests
run: yarn test
run: npm test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Extract, validate and normalize [RePEc IDs](https://en.wikipedia.org/wiki/Research_Papers_in_Economics).

**Current version:** 0.1.1
**Supported Node.js versions:** 4, 5, 6, 7
**Supported Node.js versions:** 18, 20, 22, 23

## Installation

Expand Down
Loading

0 comments on commit 6d4b724

Please sign in to comment.