-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 900 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 900 Bytes
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
{
"name": "node-caffe",
"version": "1.0.0",
"description": "Caffe Deep Learning for Node",
"main": "./lib/node-caffe",
"scripts": {
"build": "node-gyp configure && node-gyp rebuild",
"test_built": "mocha -gc --reporter spec",
"test": "node-gyp rebuild && mocha -gc --reporter spec"
},
"repository": {
"type": "git",
"url": "https://github.com/foysavas/node-caffe.git"
},
"keywords": [
"caffe",
"deep",
"learning",
"neural",
"nets",
"ai",
"machine",
"learning"
],
"author": "Foy Savas",
"license": "ISC",
"bugs": {
"url": "https://github.com/foysavas/node-caffe/issues"
},
"homepage": "https://github.com/foysavas/node-caffe",
"engines": {
"node": ">=0.12.5"
},
"dependencies": {
"nan": "^2.0.4",
"ndarray": "^1.0.18",
"protobufjs": "^4.0.0"
},
"devDependencies": {
"mocha": "*"
}
}