-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
113 lines (113 loc) · 3.15 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "ml-spectra-processing",
"version": "14.6.2",
"description": "Various method to process spectra",
"main": "./lib/index.js",
"module": "./lib-esm/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"node": "./lib/index.js",
"default": "./lib-esm/index.js"
},
"./matrix": {
"node": "./lib/matrix/index.js",
"default": "./lib-esm/matrix/index.js"
},
"./reim": {
"node": "./lib/reim/index.js",
"default": "./lib-esm/reim/index.js"
},
"./utils": {
"node": "./lib/utils/index.js",
"default": "./lib-esm/utils/index.js"
},
"./x": {
"node": "./lib/x/index.js",
"default": "./lib-esm/x/index.js"
},
"./xreim": {
"node": "./lib/xreim/index.js",
"default": "./lib-esm/xreim/index.js"
},
"./xy": {
"node": "./lib/xy/index.js",
"default": "./lib-esm/xy/index.js"
},
"./xy2": {
"node": "./lib/xy2/index.js",
"default": "./lib-esm/xy2/index.js"
},
"./xyArray": {
"node": "./lib/xyArray/index.js",
"default": "./lib-esm/xyArray/index.js"
},
"./xyObject": {
"node": "./lib/xyObject/index.js",
"default": "./lib-esm/xyObject/index.js"
},
"./zone": {
"node": "./lib/zone/index.js",
"default": "./lib-esm/zone/index.js"
},
"./zones": {
"node": "./lib/zones/index.js",
"default": "./lib-esm/zones/index.js"
}
},
"files": [
"src",
"lib",
"lib-esm"
],
"scripts": {
"build": "npm run tsc-esm && cheminfo-build --entry lib-esm/index.js --root SpectraProcessing",
"check-types": "tsc --noEmit",
"clean": "rimraf lib lib-esm",
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"jscpd": "jscpd -l 10 -i \"**/__tests__/**\" -t 1 src",
"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": "git+https://github.com/mljs/spectra-processing.git"
},
"keywords": [],
"author": "Luc Patiny",
"license": "MIT",
"bugs": {
"url": "https://github.com/mljs/spectra-processing/issues"
},
"homepage": "https://github.com/mljs/spectra-processing#readme",
"devDependencies": {
"@vitest/coverage-v8": "^2.1.4",
"cheminfo-build": "^1.2.0",
"eslint": "^9.14.0",
"eslint-config-cheminfo-typescript": "^16.0.0",
"jest-matcher-deep-close-to": "^3.0.2",
"jscpd": "^4.0.5",
"ml-spectra-fitting": "^4.2.4",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"spectrum-generator": "^8.0.11",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"dependencies": {
"binary-search": "^1.3.6",
"cheminfo-types": "^1.8.1",
"fft.js": "^4.0.4",
"is-any-array": "^2.0.1",
"ml-matrix": "^6.12.0",
"ml-xsadd": "^3.0.1",
"spline-interpolator": "^1.0.0"
}
}