-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat!: calculateForMF is now async and returns a Promise feat: getPeaks will make a baseline correction before calculate the noise chore!: remove support for Node.js 12 Co-authored-by: Luc Patiny <[email protected]>
- Loading branch information
Showing
16 changed files
with
139 additions
and
199 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,19 +25,16 @@ | |
"build": "cheminfo-build --entry src/index.js --root Chromatography", | ||
"eslint": "eslint src --cache", | ||
"eslint-fix": "npm run eslint -- --fix", | ||
"prepublishOnly": "rollup -c", | ||
"test": "npm run test-coverage && npm run eslint", | ||
"test-only": "jest", | ||
"test-coverage": "jest --coverage" | ||
"prepack": "rollup -c", | ||
"prettier": "prettier --check src", | ||
"prettier-write": "prettier --write src", | ||
"test": "npm run test-only && npm run eslint && npm run prettier", | ||
"test-only": "jest --coverage" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/cheminfo/chromatography.git" | ||
}, | ||
"jest": { | ||
"testEnvironment": "node", | ||
"transformIgnorePatterns": [] | ||
}, | ||
"author": "Michaël Zasso", | ||
"contributors": [ | ||
"Miguel Asencio <[email protected]>" | ||
|
@@ -49,38 +46,39 @@ | |
"homepage": "https://github.com/cheminfo/chromatography#readme", | ||
"devDependencies": { | ||
"@babel/plugin-transform-modules-commonjs": "^7.16.8", | ||
"@types/jest": "^27.4.0", | ||
"@types/jest": "^27.4.1", | ||
"cheminfo-build": "^1.1.11", | ||
"convert-to-jcamp": "^5.1.1", | ||
"eslint": "^8.6.0", | ||
"eslint-config-cheminfo": "^7.2.1", | ||
"convert-to-jcamp": "^5.2.0", | ||
"eslint": "^8.10.0", | ||
"eslint-config-cheminfo": "^7.2.2", | ||
"esm": "^3.2.25", | ||
"jest": "^27.4.7", | ||
"jest": "^27.5.1", | ||
"jest-matcher-deep-close-to": "^3.0.2", | ||
"prettier": "^2.5.1", | ||
"rollup": "^2.63.0", | ||
"spectrum-generator": "^6.0.2", | ||
"typescript": "^4.5.4" | ||
"rollup": "^2.70.0", | ||
"spectrum-generator": "^8.0.0", | ||
"typescript": "^4.6.2" | ||
}, | ||
"dependencies": { | ||
"binary-search": "^1.3.6", | ||
"is-any-array": "^2.0.0", | ||
"isotopic-distribution": "^1.4.0", | ||
"jcampconverter": "^8.2.4", | ||
"mf-generator": "^1.3.8", | ||
"mf-parser": "^1.4.0", | ||
"ml-array-max": "^1.2.3", | ||
"ml-array-mean": "^1.1.5", | ||
"ml-array-median": "^1.1.5", | ||
"ml-array-sum": "^1.1.5", | ||
"ml-gsd": "^6.9.2", | ||
"ml-matrix": "^6.8.2", | ||
"isotopic-distribution": "^1.4.9", | ||
"jcampconverter": "^8.2.5", | ||
"mf-generator": "^1.3.20", | ||
"mf-parser": "^1.4.5", | ||
"ml-airpls": "^1.0.0", | ||
"ml-array-max": "^1.2.4", | ||
"ml-array-mean": "^1.1.6", | ||
"ml-array-median": "^1.1.6", | ||
"ml-array-sum": "^1.1.6", | ||
"ml-gsd": "^10.1.2", | ||
"ml-matrix": "^6.9.0", | ||
"ml-ngmca": "^1.0.0", | ||
"ml-pca": "^4.0.2", | ||
"ml-regression-polynomial": "^2.2.0", | ||
"ml-spectra-processing": "^8.0.3", | ||
"ml-spectra-processing": "^11.0.0", | ||
"mzdata": "^2.3.1", | ||
"netcdf-gcms": "^1.4.0", | ||
"xy-parser": "^4.0.1" | ||
"xy-parser": "^5.0.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.