-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
46 lines (46 loc) · 952 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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "node-webcl",
"version": "0.9.1",
"description": "A WebCL implementation for desktops with NodeJS",
"main": "webcl.js",
"author": "Mikael Bourges-Sevenier <[email protected]>",
"keywords": [
"webcl",
"opencl"
],
"maintainers": [
{
"name": "Mikael Bourges-Sevenier",
"email": "[email protected]"
}
],
"licenses": [
{
"type": "BSD",
"url": "https://github.com/mikeseven/node-webcl/blob/master/LICENSES"
}
],
"repository": {
"type": "git",
"url": "https://github.com/mikeseven/node-webcl"
},
"directories": {
"src": "src",
"lib": "lib",
"docs": "docs",
"examples": "examples",
"test": "test"
},
"scripts": {
"install": "node-gyp rebuild --msvs_version=2013"
},
"dependencies": {
"node-webgl": ">=0.4.2",
"node-image": ">=0.7.1",
"nan": "~1.2.0"
},
"devDependencies": {
"chai": "*",
"mocha": "*"
}
}