Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lpatiny committed May 10, 2024
1 parent f5f57ce commit 1f4bcf0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"prepack": "npm run compile",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-coverage && npm run eslint",
"test": "npm run test-coverage && npm run eslint && npm run prettier",
"test-coverage": "jest --coverage",
"test-only": "jest"
},
Expand All @@ -43,20 +43,20 @@
},
"homepage": "https://github.com/cheminfo/sdf-parser",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.21.2",
"@types/jest": "^29.4.1",
"@babel/plugin-transform-modules-commonjs": "^7.24.1",
"@types/jest": "^29.5.12",
"babel-eslint": "^10.1.0",
"callback-stream": "^1.1.0",
"cheminfo-build": "^1.2.0",
"eslint": "^8.36.0",
"eslint-config-cheminfo": "^8.2.0",
"filelist-utils": "^1.8.0",
"jest": "^29.5.0",
"openchemlib": "^8.2.0",
"prettier": "^2.8.4"
"eslint-config-cheminfo": "^9.2.0",
"filelist-utils": "^1.11.0",
"jest": "^29.7.0",
"openchemlib": "^8.9.0",
"prettier": "^3.2.5"
},
"dependencies": {
"dynamic-typing": "^1.0.0",
"dynamic-typing": "^1.0.1",
"ensure-string": "^1.2.0"
}
}
4 changes: 2 additions & 2 deletions src/__tests__/iterator.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ test('iterator', async () => {
).files.filter((file) => file.name === 'test.sdf');
const results = [];

if (parseInt(process.versions.node) >= 18) {
if (parseInt(process.versions.node, 10) >= 18) {
for await (const entry of iterator(ReadStream.fromWeb(files[0].stream()))) {
results.push(entry);
}
Expand Down Expand Up @@ -128,7 +128,7 @@ test('iterator on fileCollection stream', async () => {
).files[0];
const results = [];

if (parseInt(process.versions.node) >= 18) {
if (parseInt(process.versions.node, 10) >= 18) {
for await (const entry of iterator(ReadStream.fromWeb(file.stream()))) {
results.push(entry);
}
Expand Down

0 comments on commit 1f4bcf0

Please sign in to comment.