forked from amd/furious.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.37 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
{
"name": "furious",
"version": "0.0.1",
"description": "High-performance library for n-dimensional array processing in JavaScript",
"author": "Marat Dukhan <[email protected]>",
"scripts": {
"test": "mocha --reporter dot test/*.test.js"
},
"main": "lib/furious.js",
"repository": {
"type": "git",
"url": "https://github.com/hpcgarage/furious.js.git"
},
"bugs": {
"url": "https://github.com/hpcgarage/furious.js/issues"
},
"keywords": [
"ndarray",
"array",
"matrix",
"tensor",
"hpc",
"computing",
"blas",
"science",
"scientific",
"numeric",
"math",
"mathematics",
"statistics"
],
"dependencies": {
"protobufjs": "^4.0.0"
},
"optionalDependencies": {
"node-webcl": "^0.9.2",
"nopt": "^3.0.3",
"ws": "^0.4.32"
},
"devDependencies": {
"benchmark": "^1.0.0",
"brfs": "^1.4.1",
"browserify": "^11.0.1",
"chai": "^3.2.0",
"grunt": "^0.4.5",
"grunt-browserify": "^4.0.1",
"grunt-contrib-jshint": "^0.11.3",
"grunt-contrib-uglify": "^0.9.2",
"grunt-contrib-yuidoc": "^0.10.0",
"grunt-mocha-test": "^0.12.7",
"grunt-shell": "^1.1.2",
"jshint": "^2.8.0",
"mocha": "^2.3.1",
"uglify-js": "^2.4.24",
"yuidoc-bootstrap-theme": "^1.0.6",
"yuidocjs": "^0.9.0"
},
"license": "MIT",
"engines": {
"node": ">= 0.5.5"
}
}