-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
33 lines (33 loc) · 871 Bytes
/
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
{
"name": "node-svd",
"description": "Singular-Value-Decomposition using SVDLIBC",
"version": "0.1.3",
"homepage": "https://github.com/xionluhnis/node-svd",
"engines": {
"node": ">=0.12.0"
},
"dependencies": {
},
"author": "Alexandre Kaspar <[email protected]>",
"contributers": [{
"name": "Florian Reifschneider",
"email": "[email protected]"
}],
"repository": {
"type": "git",
"url": "http://github.com/xionluhnis/node-svd.git"
},
"bugs": {
"url": "http://github.com/xionluhnis/node-svd/issues"
},
"keywords": ["svd", "math", "linear", "algebra", "SVDLIBC"],
"main": "./svd.node",
"maintainers": [{
"name": "Alexandre Kaspar",
"email": "[email protected]",
"web": "http://www.wox-xion.ch"
}],
"scripts": {
"install": "node-gyp rebuild && cp build/Release/svd.node ./svd.node"
}
}