forked from iterative/cml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 3.05 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@dvcorg/cml",
"version": "0.10.0",
"description": "<p align=\"center\"> <img src=\"https://static.iterative.ai/img/cml/title_strip_trim.png\" width=400> </p>",
"author": {
"name": "Iterative Inc",
"url": "http://cml.dev"
},
"homepage": "https://github.com/iterative/cml#readme",
"repository": {
"type": "git",
"url": "https://github.com/iterative/cml"
},
"bugs": {
"url": "https://github.com/iterative/cml/issues"
},
"keywords": [
"ci/cd",
"ci",
"cd",
"continuous-integration",
"continuous-delivery",
"developer-tools",
"data science",
"machine learning",
"deep learning",
"cml",
"dvc"
],
"license": "Apache-2.0",
"main": "index.js",
"engines": {
"node": "<=16.x"
},
"bin": {
"cml": "bin/cml.js",
"cml-send-github-check": "bin/legacy.js",
"cml-send-comment": "bin/legacy.js",
"cml-publish": "bin/legacy.js",
"cml-tensorboard-dev": "bin/legacy.js",
"cml-runner": "bin/legacy.js",
"cml-cloud-runner-entrypoint": "bin/legacy.js",
"cml-pr": "bin/legacy.js"
},
"scripts": {
"lintfix": "eslint --fix ./ && prettier --write '**/*.{js,json,md,yaml,yml}'",
"lint": "eslint ./",
"test": "jest --forceExit",
"do_snapshots": "jest --updateSnapshot"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yaml,yml}": [
"prettier --write"
]
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^4.0.0",
"@npcz/magic": "^1.3.11",
"@octokit/core": "^3.5.1",
"@octokit/plugin-throttling": "^3.5.2",
"@octokit/rest": "18.0.0",
"ec2-spot-notification": "^2.0.3",
"form-data": "^3.0.1",
"fs-extra": "^9.1.0",
"git-url-parse": "^11.6.0",
"globby": "^11.0.4",
"js-base64": "^3.7.2",
"kebabcase-keys": "^1.0.0",
"node-fetch": "^2.6.5",
"node-forge": "^0.10.0",
"node-ssh": "^12.0.0",
"proxy-agent": "^5.0.0",
"pseudoexec": "^0.2.0",
"semver": "^7.3.5",
"simple-git": "^2.46.0",
"strip-ansi": "^6.0.1",
"strip-url-auth": "^1.0.1",
"tar": "^6.1.11",
"tempy": "^0.6.0",
"which": "^2.0.2",
"winston": "^3.3.3",
"yargs": "^17.2.1"
},
"devDependencies": {
"eslint": "^8.1.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"husky": "^4.3.8",
"jest": "^27.2.1",
"lint-staged": "^10.5.4",
"prettier": "^2.4.1",
"transparent-proxy": "^1.8.7"
},
"jest": {
"globalSetup": "./tests/setup.js",
"globalTeardown": "./tests/teardown.js",
"testTimeout": 600000
},
"pkg": {
"bin": "bin/cml.js",
"assets": [
"**/*.js",
"node_modules/@npcz/magic/**/*"
],
"targets": [
"linux",
"macos"
],
"outputPath": "build"
}
}