-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
80 lines (80 loc) · 2.35 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
{
"name": "ml-gsd",
"version": "12.1.8",
"description": "Global Spectra Deconvolution",
"main": "./lib/index.js",
"module": "./lib-esm/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"src",
"lib-esm"
],
"scripts": {
"build": "npm run tsc-esm && cheminfo-build --entry lib-esm/index.js --root GSD",
"check-types": "tsc --noEmit",
"clean": "rimraf lib lib-esm",
"eslint": "eslint src --cache",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "npm run tsc",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-only && npm run eslint && npm run prettier && npm run check-types",
"test-only": "vitest run --coverage",
"tsc": "npm run clean && npm run tsc-cjs && npm run tsc-esm",
"tsc-cjs": "tsc --project tsconfig.cjs.json",
"tsc-esm": "tsc --project tsconfig.esm.json"
},
"repository": {
"type": "git",
"url": "https://github.com/mljs/global-spectral-deconvolution.git"
},
"keywords": [
"Global Spectra Deconvolution",
"peak",
"picking",
"optimization",
"gsd"
],
"author": "Andres Castillo",
"contributors": [
"Miguel Asencio <maasencioh@gmail.com> (https://github.com/maasencioh)",
"J. Alejandro Bolaños A. <jose.bolanos@correounivalle.edu.co> (https://github.com/jobo322)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mljs/global-spectral-deconvolution/issues"
},
"homepage": "https://github.com/mljs/global-spectral-deconvolution",
"prettier": {
"arrowParens": "always",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
},
"devDependencies": {
"@vitest/coverage-v8": "^1.6.0",
"cheminfo-build": "^1.2.0",
"eslint": "^8.57.0",
"eslint-config-cheminfo-typescript": "^12.4.0",
"esm": "^3.2.25",
"jest-matcher-deep-close-to": "^3.0.2",
"mf-global": "^3.0.20",
"ml-stat": "^1.3.3",
"prettier": "^3.2.5",
"rimraf": "^5.0.6",
"spectrum-generator": "^8.0.11",
"typescript": "^5.4.5",
"vitest": "^1.6.0",
"xy-parser": "^5.0.5"
},
"dependencies": {
"@lukeed/uuid": "^2.0.1",
"cheminfo-types": "^1.7.3",
"ml-peak-shape-generator": "^4.1.4",
"ml-savitzky-golay-generalized": "^4.2.0",
"ml-spectra-fitting": "^4.2.4",
"ml-spectra-processing": "^14.5.3"
}
}