forked from cloud-annotations/cloud-annotations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.52 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
52
53
54
55
56
57
58
{
"name": "cloud-annotations",
"description": "Easy training for classification and object detection",
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"version": "1.1.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cloud-annotations/training.git"
},
"homepage": "https://github.com/cloud-annotations/training",
"author": "Nick Bourdakos <bourdakos1@gmail.com>",
"scripts": {
"test": "nyc mocha \"__tests__/**/*.test.js\"",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "cd trainer && python setup.py all",
"alias": "sed -i '' '/alias cacli-dev=/d' ~/.bashrc && echo \"alias cacli-dev=\\\"$PWD/bin/cacli\\\"\" >> ~/.bashrc",
"patch": "./publish-trainer.sh $(npm --no-git-tag-version version patch) && yarn publish"
},
"main": "src/api/wml.js",
"bin": {
"cacli": "bin/cacli"
},
"devDependencies": {
"coveralls": "^3.0.3",
"decache": "^4.5.1",
"mocha": "^6.0.2",
"mock-stdin": "^0.3.1",
"nyc": "^13.3.0",
"rewire": "^4.0.1",
"sinon": "^7.3.1"
},
"dependencies": {
"ansi-escapes": "^4.0.0",
"chalk": "^2.4.2",
"fs-extra": "^7.0.1",
"ibm-cos-sdk": "^1.4.4",
"js-yaml": "^3.12.2",
"klaw-sync": "^6.0.0",
"moment": "^2.24.0",
"mute-stream": "^0.0.8",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"ws": "^6.2.0"
},
"nyc": {
"all": true,
"include": [
"src/**/*.js"
],
"exclude": [
"src/api/api.js"
]
}
}