-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.79 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.79 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
{
"name": "ml-signal-processing",
"version": "2.2.0",
"description": "Process data in the form of {x:[], y:[]}",
"type": "module",
"exports": {
".": "./lib/index.js",
"./FilterXYSchema.json": "./FilterXYSchema.json"
},
"keywords": [],
"author": "Luc Patiny",
"license": "MIT",
"files": [
"src",
"lib",
"FilterXYSchema.json"
],
"scripts": {
"check-types": "tsc --noEmit",
"clean": "rimraf lib",
"createSchema": "typescript-json-schema --refs false ./tsconfig.json FilterXYType > FilterXYSchema.json",
"eslint": "eslint . --cache",
"eslint-fix": "node --run eslint -- --fix",
"prepack": "npm run createSchema && npm run tsc",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"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-build",
"tsc-build": "tsc --project tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mljs/signal-processing.git"
},
"bugs": {
"url": "https://github.com/mljs/signal-processing/issues"
},
"homepage": "https://github.com/mljs/signal-processing#readme",
"devDependencies": {
"@vitest/coverage-v8": "^4.0.16",
"@zakodium/tsconfig": "^1.0.2",
"eslint": "^9.39.2",
"eslint-config-cheminfo-typescript": "^21.0.1",
"jest-matcher-deep-close-to": "^3.0.2",
"prettier": "^3.7.4",
"rimraf": "^6.1.2",
"typescript": "^5.9.3",
"typescript-json-schema": "^0.67.1",
"vitest": "^4.0.16"
},
"dependencies": {
"baselines": "^1.1.9",
"cheminfo-types": "^1.10.0",
"ml-gsd": "^13.1.1",
"ml-savitzky-golay-generalized": "^4.2.0",
"ml-spectra-processing": "^14.19.0"
}
}