forked from waylonflinn/weblas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.38 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
{
"name": "weblas",
"version": "0.9.1",
"description": "GPU accelerated BLAS for node and the browser",
"main": "index.js",
"directories": {
"lib": "lib",
"example": "example",
"test": "test",
"dist": "dist"
},
"dependencies": {
"glslify": "^5.0.2"
},
"devDependencies": {
"arrayloader": "^3.0.1",
"async": "^2.4.1",
"benchmark": "^1.0.0",
"licensify": "^3.1.2",
"microtime": "^2.0.0",
"minifyify": "^7.1.0",
"tape": "^4.2.2"
},
"scripts": {
"data": "node test/data/generate.js",
"test": "browserify test/*.js | testling -x $npm_config_browser",
"build": "browserify index.js --s weblas -p licensify > dist/weblas.js",
"min": "browserify index.js --s weblas -d -p [minifyify --map ./weblas.map.json --output dist/weblas.map.json] -p licensify > dist/weblas.js",
"benchmark": "browserify benchmark/*.js | testling -x $npm_config_browser"
},
"browserify": {
"transform": ["glslify"]
},
"repository": {
"type": "git",
"url": "https://github.com/waylonflinn/weblas.git"
},
"keywords": [
"gpu",
"blas",
"gemm",
"matrix",
"multiply",
"neural network",
"deep learning"
],
"author": "Waylon Flinn <waylonflinn@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/waylonflinn/weblas/issues"
},
"homepage": "https://github.com/waylonflinn/weblas"
}