-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.32 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
{
"name": "node-red-contrib-tensorflow",
"version": "0.4.2",
"description": "TensorFlow.js nodes using pre-trained models",
"main": "index.js",
"scripts": {
"postinstall": "node postinstall.js",
"test": "mocha \"test/**/*_spec.js\" --timeout 300000",
"coverage": "nyc npm test"
},
"engines": {
"node": ">=16.0.0"
},
"node-red": {
"version": ">=3.0.0",
"nodes": {
"node": "tensorflow.js"
}
},
"keywords": [
"node-red",
"tensorflow"
],
"author": "kazuhitoyokoi",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/kazuhitoyokoi/node-red-contrib-tensorflow.git"
},
"bugs": {
"url": "https://github.com/kazuhitoyokoi/node-red-contrib-tensorflow/issues"
},
"homepage": "https://github.com/kazuhitoyokoi/node-red-contrib-tensorflow#readme",
"dependencies": {
"@tensorflow-models/coco-ssd": "2.2.2",
"@tensorflow-models/handpose": "0.0.7",
"@tensorflow-models/mobilenet": "2.1.0",
"@tensorflow-models/posenet": "2.2.2",
"@tensorflow/tfjs-node": "4.1.0",
"jimp": "0.16.2",
"pureimage": "0.2.1",
"request": "2.88.2",
"request-promise": "4.2.6",
"stream-buffers": "3.0.2"
},
"devDependencies": {
"mocha": "10.2.0",
"node-red": "3.0.2",
"node-red-node-test-helper": "0.3.0"
}
}