-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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": "ndarray-householder-qr",
"version": "2.3.3",
"description": "Householder triangularization for QR Factorization of ndarrays",
"main": "index.js",
"author": "Ricky Reusser",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/scijs/ndarray-householder-qr.git"
},
"scripts": {
"test": "npm run lint && node test/test.js",
"lint": "semistandard",
"lint-fix": "semistandard --fix",
"bench": "node benchmarks/*.js"
},
"keywords": [
"householder",
"linearalgebra",
"matrix",
"qr",
"ndarray",
"scijs"
],
"devDependencies": {
"jshint": "*",
"microbench": "git+https://[email protected]/rreusser/microbench.git",
"ndarray": "^1.0.16",
"ndarray-blas-trsv": "^1.0.1",
"ndarray-ops": "^1.2.2",
"ndarray-scratch": "^1.1.1",
"ndarray-show": "^1.1.1",
"ndarray-tests": "^1.1.3",
"ndarray-vandermonde": "^1.0.0",
"ndgemm": "0.0.0",
"semistandard": "^12.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.8.0"
},
"dependencies": {
"ndarray-blas-level1": "^1.0.0",
"ndarray-diagonal": "^1.0.0",
"ndarray-fill": "^1.0.1"
}
}