-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 942 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 942 Bytes
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
{
"name": "eigenjs",
"description": "The goal of this project is to port Eigen library into JavaScript for linear algebra.",
"version": "0.0.89",
"homepage": "https://github.com/rick68/eigenjs",
"main": "index.js",
"scripts": {
"test": "mocha test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/rick68/eigenjs.git"
},
"bugs": {
"url": "https://github.com/rick68/eigenjs/issues"
},
"keywords": [
"eigen",
"linear algebra",
"matrix",
"vector",
"numerical solver",
"related algorithm"
],
"author": "Rick Yang <rick68@gmail.com>",
"contributors": [],
"dependencies": {
"bindings": "^1.2.1",
"nan": "^1.3.0",
"node-gyp": "^1.0.1"
},
"devDependencies": {
"mocha": "^1.21.4",
"should": "^4.0.4"
},
"licenses": [
{
"type": "MPL2",
"url": "https://raw.githubusercontent.com/rick68/eigenjs/master/LICENSE"
}
]
}