This repository has been archived by the owner on Nov 10, 2020. It is now read-only.
forked from mljs/logistic-regression
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.42 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
{
"name": "ml-logistic-regression",
"version": "2.0.0",
"description": "Logistic regression",
"main": "lib/logreg.js",
"module": "src/logreg.js",
"files": [
"lib",
"src"
],
"scripts": {
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepublishOnly": "rollup -c",
"test": "npm run test-coverage && npm run eslint",
"test-coverage": "jest --coverage",
"test-only": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mljs/logistic-regression.git"
},
"keywords": [
"machine learning",
"logistic regression",
"classification",
"classifier"
],
"author": "jajoe",
"license": "MIT",
"bugs": {
"url": "https://github.com/mljs/logistic-regression/issues"
},
"homepage": "https://github.com/mljs/logistic-regression#readme",
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"ml-matrix": "^6.5.0"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.9.6",
"@types/jest": "^25.2.1",
"eslint": "^6.8.0",
"eslint-config-cheminfo": "^3.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^25.5.4",
"prettier": "^2.0.5",
"rollup": "^2.7.6"
},
"prettier": {
"arrowParens": "always",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
}
}