-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.25 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
{
"name": "@csquare/ml-default",
"version": "1.0.0",
"description": "Default Docker image used to run experiments on csquare.run.",
"keywords": [
"csquare",
"python",
"machine-learning",
"deep-learning",
"tensorflow",
"pytorch",
"torchvision",
"cudnn",
"nccl",
"mxnet",
"pyspark",
"horovod"
],
"homepage": "https://github.com/csquare-ai/ml-default#readme",
"bugs": {
"email": "sicong@csquare.ai",
"url": "https://github.com/csquare-ai/ml-default/issues"
},
"license": "MIT",
"author": "Sicong Zhuang <sciong@csquare.ai> (https://www.linkedin.com/in/sicong-zhuang-27471459)",
"repository": "csquare-ai/ml-default",
"scripts": {
"format": "prettier --write \"**\"",
"format:check": "prettier --check \"**\"",
"build:base": "docker build --tag=csquareai/ml-default:base --target=base .",
"build:single": "docker build --tag=csquareai/ml-default:single --target=single .",
"build:parallel": "docker build --tag=csquareai/ml-default:parallel --target=parallel ."
},
"dependencies": {},
"devDependencies": {
"@csquare/prettier-config": "^1.1.2",
"prettier": "^2.3.1",
"standard-commit": "^4.2.4"
},
"private": true,
"prettier": "@csquare/prettier-config"
}