Skip to content

Commit 924e5b7

Browse files
committed
fix: update dependencies
1 parent 8cf9ff0 commit 924e5b7

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"trailingComma": "all"
5959
},
6060
"devDependencies": {
61-
"@types/jest": "^27.4.0",
61+
"@types/jest": "^27.4.1",
6262
"chemcalc": "^3.4.1",
6363
"cheminfo-build": "^1.1.11",
6464
"eslint": "^8.9.0",
@@ -72,16 +72,16 @@
7272
"nodemon": "^2.0.15",
7373
"prettier": "^2.5.1",
7474
"rimraf": "^3.0.2",
75-
"spectrum-generator": "^7.0.0",
75+
"spectrum-generator": "^7.0.1",
7676
"ts-jest": "^27.1.3",
7777
"typescript": "^4.5.5",
78-
"xy-parser": "^5.0.0"
78+
"xy-parser": "^5.0.1"
7979
},
8080
"dependencies": {
81-
"cheminfo-types": "^0.11.1",
82-
"ml-peak-shape-generator": "^4.0.3",
83-
"ml-savitzky-golay-generalized": "4.0.0",
81+
"cheminfo-types": "^1.0.0",
82+
"ml-peak-shape-generator": "^4.1.1",
83+
"ml-savitzky-golay-generalized": "4.0.1",
8484
"ml-spectra-fitting": "^3.0.4",
85-
"ml-spectra-processing": "^10.2.0"
85+
"ml-spectra-processing": "^11.0.0"
8686
}
8787
}

src/__tests__/ubiquitin.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { readFileSync } from 'fs';
22

3-
import type { DataXY } from 'cheminfo-types';
43
import { toBeDeepCloseTo, toMatchCloseTo } from 'jest-matcher-deep-close-to';
54
import { parseXY } from 'xy-parser';
65

@@ -15,7 +14,7 @@ describe('Global spectra deconvolution ubiquitin', () => {
1514
it('HR mass spectra', () => {
1615
let spectrum = parseXY(
1716
readFileSync(`${__dirname}/data/ubiquitin.txt`, 'utf-8'),
18-
) as DataXY;
17+
);
1918

2019
let peaks = gsd(spectrum, {
2120
minMaxRatio: 0.0,

0 commit comments

Comments
 (0)