-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 921 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 921 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
32
33
34
35
{
"name": "object-detection-training-converter",
"version": "1.0.0",
"description": "command line scripts to convert annotation between Watson Visual Recognition and Pascal VOC XML format",
"scripts": {
"lint": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "https://github.com/Lotti/obj-annotations-converter"
},
"author": "Valerio Riva <valerio.riva@it.ibm.com>",
"license": "MIT",
"bin": {
"obj-annotations-converter": "./cli/converter.js"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^6.2.0",
"dayjs": "^1.9.7",
"dotenv": "^8.2.0",
"fast-glob": "^3.2.4",
"fast-xml-parser": "^5.7.0",
"fs-extra": "^9.0.1",
"html-entities": "^1.3.1",
"iconv": "^3.0.0",
"image-size": "^0.9.3",
"normalize-path": "^3.0.0",
"uuid": "^14.0.0",
"xmlbuilder": "^15.1.1"
},
"devDependencies": {
"eslint": "^9.39.1"
}
}