-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "ml-regression-theil-sen",
"version": "3.0.0",
"description": "Theil-Sen regression",
"main": "lib/index.js",
"module": "src/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"compile": "rollup -c",
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "npm run compile",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-coverage && npm run eslint && npm run prettier",
"test-only": "jest",
"test-coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mljs/regression-theil-sen.git"
},
"keywords": [],
"author": "Miguel Angel Asencio Hurtado",
"license": "MIT",
"bugs": {
"url": "https://github.com/mljs/regression-theil-sen/issues"
},
"homepage": "https://github.com/mljs/regression-theil-sen#readme",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.24.1",
"@types/jest": "^29.5.12",
"eslint": "^8.57.0",
"eslint-config-cheminfo": "^9.2.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rollup": "^4.17.2"
},
"dependencies": {
"ml-array-median": "^1.1.6",
"ml-regression-base": "^4.0.0"
}
}