forked from mljs/spectra-processing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.12 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
{
"name": "ml-spectra-processing",
"version": "9.1.0",
"description": "Various method to process spectra",
"main": "./lib/index.js",
"module": "./lib-esm/index.js",
"types": "./lib/index.d.ts",
"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-coverage && npm run eslint && npm run prettier && npm run check-types",
"test-coverage": "jest --coverage",
"test-only": "jest",
"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",
"prettier": {
"arrowParens": "always",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"cheminfo-build": "^1.1.11",
"eslint": "^8.8.0",
"eslint-config-cheminfo-typescript": "^10.3.0",
"eslint-plugin-jsdoc": "^37.7.1",
"esm": "^3.2.25",
"jest": "^27.4.7",
"jest-matcher-deep-close-to": "^3.0.2",
"jscpd": "^3.4.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
},
"dependencies": {
"binary-search": "^1.3.6",
"cheminfo-types": "^0.9.1",
"fft.js": "^4.0.4",
"is-any-array": "^2.0.0",
"median-quickselect": "^1.0.1",
"ml-matrix": "^6.8.2",
"spline-interpolator": "^1.0.0"
}
}