forked from iterative/cml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.27 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@dvcorg/cml",
"version": "0.3.5",
"author": {
"name": "DVC",
"url": "http://cml.dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iterative/cml.git"
},
"bugs": {
"url": "https://github.com/iterative/cml/issues"
},
"keywords": [
"ci/cd",
"ci",
"cd",
"continuous",
"machine learning",
"deep learning",
"cml"
],
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"main": "index.js",
"bin": {
"cml-send-github-check": "bin/cml-send-github-check.js",
"cml-send-comment": "bin/cml-send-comment.js",
"cml-publish": "bin/cml-publish.js",
"cml-tensorboard-dev": "bin/cml-tensorboard-dev.js",
"cml-runner": "bin/cml-runner.js",
"cml-cloud-runner-entrypoint": "bin/cml-runner.js"
},
"scripts": {
"lintfix": "eslint --fix ./",
"lint": "eslint ./",
"test": "jest --passWithNoTests",
"do_snapshots": "jest --updateSnapshot"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.md": [
"prettier --write"
]
},
"dependencies": {
"@actions/core": "^1.2.5",
"@actions/github": "^4.0.0",
"decamelize-keys": "^1.1.0",
"file-type": "^14.2.0",
"form-data": "^3.0.0",
"fs-extra": "^9.0.1",
"git-url-parse": "^11.4.0",
"is-svg": "^4.2.2",
"js-base64": "^3.5.2",
"node-fetch": "^2.6.0",
"node-forge": "^0.10.0",
"node-ssh": "^11.0.0",
"semver": "^7.3.4",
"strip-url-auth": "^1.0.1",
"tar": "^6.1.0",
"tempy": "^0.6.0",
"yargs": "^15.1.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.3",
"jest": "^24.9.0",
"lint-staged": "^10.0.8",
"prettier": "^2.1.1"
},
"description": "<p align=\"center\"> <img src=\"imgs/title_strip_trim.png\" width=400> </p>",
"homepage": "https://github.com/iterative/cml#readme"
}