-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
85 lines (85 loc) · 1.78 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "furious",
"version": "0.0.1",
"description": "High-performance library for n-dimensional array processing in JavaScript",
"author": "Marat Dukhan <[email protected]>",
"contributors": [
{
"name": "Marat Dukhan",
"email": "[email protected]"
}
],
"scripts": {
"test": "mocha --reporter dot test/*.test.js"
},
"main": "lib/furious.js",
"repository": {
"type": "git",
"url": "https://github.com/amd/furious.js.git"
},
"bugs": {
"url": "https://github.com/amd/furious.js/issues"
},
"keywords": [
"ndarray",
"array",
"matrix",
"tensor",
"hpc",
"computing",
"blas",
"science",
"scientific",
"numeric",
"math",
"mathematics",
"statistics"
],
"dependencies": {
"protobufjs": "^5.0.3"
},
"optionalDependencies": {
"node-webcl": "^0.9.1"
},
"devDependencies": {
"brfs": "^1.2.0",
"browserify": "^5.9.1",
"chai": "^1.9.1",
"grunt-browserify": "^2.1.4",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-uglify": "^0.5.1",
"grunt-contrib-yuidoc": "^0.5.2",
"grunt-mocha-test": "^0.11.0",
"grunt-shell": "^0.7.0",
"jshint": "^2.5.2",
"mocha": "^1.21.3",
"uglify-js": "^2.4.15",
"yuidoc-bootstrap-theme": "^1.0.2",
"yuidocjs": "^0.3.50"
},
"testling": {
"files": "test/*.js",
"harness": "mocha-bdd",
"browsers": [
"iexplore/10.0",
"chrome/30.0",
"chrome/31.0",
"chrome/32.0",
"chrome/33.0",
"chrome/canary",
"firefox/28.0",
"firefox/nightly",
"safari/5.1",
"safari/6.0",
"opera/20.0",
"opera/next",
"iphone/6.0",
"ipad/6.0",
"android-browser/4.2"
]
},
"license": "MIT",
"engines": {
"node": ">= 0.5.5"
}
}