-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.17 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.17 KB
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
{
"name": "ml-spectra-processing",
"version": "14.22.0",
"license": "MIT",
"description": "Various method to process spectra",
"keywords": [],
"author": "Luc Patiny",
"type": "module",
"types": "./lib/index.d.ts",
"exports": {
".": "./lib/index.js",
"./matrix": "./lib/matrix/index.js",
"./reim": "./lib/reim/index.js",
"./utils": "./lib/utils/index.js",
"./x": "./lib/x/index.js",
"./xreim": "./lib/xreim/index.js",
"./xy": "./lib/xy/index.js",
"./xy2": "./lib/xy2/index.js",
"./xyArray": "./lib/xyArray/index.js",
"./xyObject": "./lib/xyObject/index.js",
"./zones": "./lib/zones/index.js"
},
"files": [
"lib",
"src"
],
"scripts": {
"build": "npm run tsc && cheminfo-build --entry lib/index.js --root SpectraProcessing",
"check-types": "tsc --noEmit",
"clean": "rimraf coverage dist lib",
"eslint": "eslint . --cache",
"eslint-fix": "eslint . --cache --fix",
"prepack": "npm run tsc",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"test": "npm run test-only && npm run check-types && npm run eslint && npm run prettier",
"test-only": "vitest run --coverage",
"tsc": "npm run clean && npm run tsc-build",
"tsc-build": "tsc --project tsconfig.build.json"
},
"dependencies": {
"binary-search": "^1.3.6",
"cheminfo-types": "^1.10.0",
"fft.js": "^4.0.4",
"is-any-array": "^2.0.1",
"ml-matrix": "^6.12.1",
"ml-xsadd": "^3.0.1"
},
"devDependencies": {
"@types/node": "^25.3.0",
"@vitest/coverage-v8": "^4.0.18",
"@zakodium/tsconfig": "^1.0.2",
"cheminfo-build": "^1.3.2",
"eslint": "^9.39.2",
"eslint-config-cheminfo-typescript": "^21.1.0",
"jest-matcher-deep-close-to": "^3.0.2",
"ml-spectra-fitting": "^5.0.1",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"spectrum-generator": "^8.1.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mljs/spectra-processing.git"
},
"bugs": {
"url": "https://github.com/mljs/spectra-processing/issues"
},
"homepage": "https://github.com/mljs/spectra-processing#readme"
}