-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 925 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 925 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
{
"name": "tensorflow2",
"version": "2.0.0",
"description": "TensorFlow Node.js provides idiomatic JavaScript language bindings and a high layer API for Node.js users.",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"test-cov": "npm run test -- --coverage && npm install codecov && ./node_modules/.bin/codecov",
"clean": "rm -rf ./tensorflow ./protobuf && node-gyp clean",
"postinstall": "npx bip install tensorflow"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/yorkie/tensorflow-nodejs.git"
},
"keywords": [
"tensorflow"
],
"author": "Yorkie Liu <yorkiefixer@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yorkie/tensorflow-nodejs/issues"
},
"homepage": "https://github.com/yorkie/tensorflow-nodejs#readme",
"dependencies": {
"@pipcook/boa": "^1.2.0"
},
"devDependencies": {
"jest": "20.0.4"
}
}