-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.6 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
{
"name": "spectra-processor",
"version": "3.3.0",
"description": "",
"main": "lib/index.js",
"module": "src/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"build": "cheminfo-build --entry src/index.js",
"build-doc": "cheminfo doc",
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "rollup -c",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-coverage && npm run eslint && npm run prettier",
"test-coverage": "vitest run --coverage",
"test-only": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo/spectra-processor.git"
},
"keywords": [],
"author": "Luc Patiny",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo/spectra-processor/issues"
},
"homepage": "https://github.com/cheminfo/spectra-processor#readme",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@vitest/coverage-v8": "^2.1.5",
"cheminfo-build": "^1.2.0",
"cheminfo-types": "^1.8.1",
"codecov": "^3.8.3",
"eslint": "^9.14.0",
"eslint-config-cheminfo": "^12.0.1",
"jest-matcher-deep-close-to": "^3.0.2",
"prettier": "^3.3.3",
"rollup": "^4.26.0"
},
"dependencies": {
"chroma-js": "^3.1.2",
"is-any-array": "^2.0.1",
"jcampconverter": "^10.0.1",
"ml-matrix": "^6.12.0",
"ml-pca": "^4.1.1",
"ml-signal-processing": "^1.2.0",
"ml-spectra-processing": "^14.6.2",
"object-hash": "^3.0.0",
"vitest": "^2.1.5",
"xy-parser": "^5.0.5"
}
}