-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 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
{
"name": "aws-sagemaker-groundtruth-to-azure-customvision",
"version": "1.1.0",
"main": "dist/index.js",
"directories": {
"lib": "lib"
},
"bin": {
"aws-sagemaker-groundtruth-to-azure-customvision": "dist/index.js"
},
"keywords": [
"aws",
"azure",
"custom vision",
"sagemaker",
"ground truth",
"amazon",
"microsoft",
"image",
"ml",
"ai",
"machine learning",
"custom vision",
"ground truth",
"amazon web services",
"cli"
],
"author": "rrainn, Inc.",
"license": "MIT",
"description": "This tool allows you to easily import your AWS SageMaker Ground Truth labels into Azure's Custom Vision for training.",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"build:watch": "npm run build -- --watch"
},
"dependencies": {
"@azure/cognitiveservices-customvision-training": "^5.2.0",
"@azure/ms-rest-js": "^2.6.0",
"aws-sdk": "^2.1036.0",
"cli-progress": "^3.9.1",
"inquirer": "^8.2.0"
},
"devDependencies": {
"@types/cli-progress": "^3.9.2",
"@types/inquirer": "^8.1.3",
"@types/node": "^16.11.10",
"typescript": "^4.5.2"
}
}