-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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
{
"name": "ml-airpls",
"version": "2.0.0",
"description": "Baseline correction using adaptive iteratively reweighted penalized least",
"main": "lib/index.js",
"types": "ml-airpls.d.ts",
"module": "src/index.js",
"files": [
"lib",
"src",
"ml-airpls.d.ts"
],
"scripts": {
"build": "cheminfo-build --entry src/index.js --root AirPLS",
"compile": "rollup -c",
"prepack": "npm run compile",
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-only && npm run eslint && npm run prettier",
"test-only": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/mljs/airpls.git"
},
"keywords": [
"baseline",
"correction"
],
"author": "Jose Alejandro Bolanos Arroyave (jobo322)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mljs/airpls/issues"
},
"homepage": "https://github.com/mljs/airpls#readme",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.24.1",
"cheminfo-build": "^1.2.0",
"eslint": "^8.57.0",
"eslint-config-cheminfo": "^9.2.0",
"jest": "^29.7.0",
"jest-matcher-deep-close-to": "^3.0.2",
"prettier": "^3.2.5",
"rollup": "^4.17.2"
},
"dependencies": {
"cuthill-mckee": "^1.0.0",
"ml-spectra-processing": "^14.5.0"
}
}