-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
64 lines (64 loc) · 1.48 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
{
"name": "node-opencl",
"version": "0.5.0",
"description": "A binding to OpenCL for Node.JS",
"main": "lib/opencl.js",
"authors": [
"Mikael Bourges-Sevenier <[email protected]>",
"Ioweb <[email protected]>"
],
"keywords": [
"opencl",
"gpu",
"high-performance",
"compute",
"computing"
],
"maintainers": [
"Mikael Bourges-Sevenier <[email protected]>",
"Fabien Cellier <[email protected]>",
"Frédéric Langlade <[email protected]>",
"Adrien Plagnol <[email protected]>"
],
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/mikeseven/node-opencl.git"
},
"bugs": {
"url": "https://github.com/mikeseven/node-opencl/issues"
},
"homepage": "https://github.com/mikeseven/node-opencl#readme",
"directories": {
"docker": "docker",
"src": "src",
"lib": "lib",
"example": "examples",
"test": "test"
},
"scripts": {
"install": "node-gyp rebuild --msvs_version=auto",
"build": "npm run clean && npm install",
"build:dev": "node-gyp build --debug",
"clean": "rm -rf build node_modules",
"lint": "eslint lib test",
"test": "mocha -gc test"
},
"dependencies": {
"bindings": "^1.2.1",
"nan": "^2.13.2"
},
"devDependencies": {
"chai": ">=2.0.0",
"chalk": ">=0.5.1",
"mocha": "5.2.0"
},
"peerDependencies": {
"node-memwatch": "1.0.1"
},
"gypfile": true,
"engines": {
"node": ">=3.0.0",
"npm": "*"
}
}