-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
84 lines (84 loc) · 2.26 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "chromatography",
"version": "8.0.1",
"description": "Tools for storing, searching and analyzing GC/MS data",
"main": "lib/index.js",
"module": "src/index.js",
"types": "chromatography.d.ts",
"sideEffects": false,
"cheminfo": {
"build": {
"namedExports": {
"utf8": [
"decode",
"encode"
]
}
}
},
"files": [
"chromatography.d.ts",
"lib",
"src"
],
"scripts": {
"build": "cheminfo-build --entry src/index.js --root Chromatography",
"eslint": "eslint src --cache",
"eslint-fix": "npm run eslint -- --fix",
"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": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo/chromatography.git"
},
"author": "Michaël Zasso",
"contributors": [
"Miguel Asencio <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo/chromatography/issues"
},
"homepage": "https://github.com/cheminfo/chromatography#readme",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
"@vitest/coverage-v8": "^2.1.8",
"cheminfo-build": "^1.2.0",
"convert-to-jcamp": "^5.4.11",
"eslint": "^9.17.0",
"eslint-config-cheminfo": "^13.0.0",
"esm": "^3.2.25",
"jest-matcher-deep-close-to": "^3.0.2",
"prettier": "^3.4.2",
"rollup": "^4.28.1",
"spectrum-generator": "^8.0.12",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"dependencies": {
"binary-search": "^1.3.6",
"is-any-array": "^2.0.1",
"isotopic-distribution": "^3.4.8",
"jcampconverter": "^10.0.1",
"mf-generator": "^3.3.11",
"mf-parser": "^3.3.0",
"ml-airpls": "^2.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": "^12.1.8",
"ml-matrix": "^6.12.0",
"ml-ngmca": "^1.0.0",
"ml-pca": "^4.1.1",
"ml-regression-polynomial": "^3.0.1",
"ml-spectra-processing": "^14.9.1",
"mzdata": "^3.0.0",
"netcdf-gcms": "^3.0.0",
"xy-parser": "^5.0.5"
}
}