-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.83 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
{
"name": "nd4js",
"description": "NumPy-style nd-array and linear algebra library that respects your freedom.",
"version": "1.3.0",
"main": "./lib/index.js",
"license": "GPL-3.0-only",
"scripts": {
"build": "webpack && node add_license.js && node mkdoc.js && babel src --out-dir lib --config-file ./babel.config.js",
"test": "karma start"
},
"homepage": "https://github.com/DirkToewe/nd4js",
"repository": {
"type": "git",
"url": "https://github.com/DirkToewe/nd4js"
},
"runkitExampleFilename": "./runkit_example.js",
"dependencies": {
"@babel/runtime": "^7.11.2"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-transform-regenerator": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"acorn": "^6.4.1",
"babel-loader": "^8.1.0",
"glob": "^7.1.6",
"jsdoc": "^3.6.5",
"jsdoc-api": "^5.0.4",
"jsdom": "^13.2.0",
"karma": "^5.2.2",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^2.0.0",
"karma-firefox-launcher": "^1.3.0",
"karma-jasmine": "^2.0.1",
"karma-parallel": "^0.3.1",
"karma-sourcemap-loader": "^0.3.8",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^3.0.5",
"plotly-notebook-js": "^0.1.2",
"regenerator-loader": "^3.1.0",
"seedrandom": "^3.0.5",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"worker-plugin": "^4.0.3"
},
"keywords": [
"cholesky decomposition",
"eigenvalues",
"linear algebra",
"linear equations",
"linear least squares",
"matrix",
"ndarray",
"numerics",
"numpy",
"npy file format",
"optimization",
"qr decomposition",
"rrqr decomposition",
"schur decomposition",
"singular values",
"svd",
"tensor"
],
"author": "Dirk Toewe"
}