forked from mljs/regression-multivariate-linear
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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-regression-multivariate-linear",
"version": "2.0.3",
"description": "Multivariate linear regression",
"main": "lib/index.js",
"module": "src/index.js",
"types": "regression-multivariate-linear.d.ts",
"sideEffects": false,
"files": [
"regression-multivariate-linear.d.ts",
"lib",
"src"
],
"scripts": {
"compile": "rollup -c",
"eslint": "eslint src data",
"eslint-fix": "npm run eslint -- --fix",
"prepublishOnly": "npm run compile",
"test": "npm run test-coverage && npm run eslint",
"test-only": "jest",
"test-coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mljs/regression-multivariate-linear.git"
},
"keywords": [],
"author": "Michaël Zasso",
"license": "MIT",
"bugs": {
"url": "https://github.com/mljs/regression-multivariate-linear/issues"
},
"homepage": "https://github.com/mljs/regression-multivariate-linear#readme",
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.7.4",
"eslint": "^6.7.2",
"eslint-config-cheminfo": "^2.0.4",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"papaparse": "^5.1.0",
"prettier": "^1.19.1",
"rollup": "^1.27.8"
},
"dependencies": {
"ml-matrix": "^6.4.1"
}
}