-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 loc) · 930 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
39
40
41
42
43
{
"name": "@microsoft/customvision-tfjs-node",
"version": "1.2.0",
"description": "Node.js library for Tensorflow.js models exported from customvision.ai",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib"
},
"files": [
"lib/index.js"
],
"babel": {
"plugins": [
"@babel/plugin-transform-runtime"
],
"presets": [
[
"@babel/preset-env",
{
"targets": [
">0.1%"
]
}
]
]
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"@tensorflow/tfjs-node": "^3.12.0"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/customvision-tfjs-node.git"
}
}