forked from node-tensorflow/node-tensorflow
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 910 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
{
"name": "node-tensorflow",
"description": "Node-tensorflow is a NodeJS API for utilizing Google's machine learning library TensorFlow.",
"version": "0.0.1",
"main": "index.js",
"keywords": [
"tensorflow",
"node-tensorflow"
],
"bugs": {
"web": "https://github.com/node-tensorflow/node-tensorflow/issues"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/node-tensorflow/node-tensorflow.git"
}
],
"dependencies": {
"bindings": "^1.2.1",
"nan": "^2.2.0"
},
"licenses": [
{
"name": "Apache License 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"devDependencies": {
"pkg-config": "^1.1.0",
"tape": "^4.4.0"
},
"scripts": {
"_preinstall": "git submodule update --init --recursive && ./tools/build.sh",
"install": "node-gyp rebuild",
"test": "node test/suite.js"
}
}