-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
38 lines (38 loc) · 924 Bytes
/
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
{
"name": "local",
"version": "0.64.1",
"description": "W&B Local is the self hosted version of Weights & Biases",
"repository": "[email protected]:wandb/local.git",
"author": "Chris Van Pelt <[email protected]>",
"license": "MIT",
"private": true,
"devDependencies": {
"@octokit/rest": "^18.0.6",
"@types/lodash": "^4.14.171",
"auto-release-notes": "git://github.com/wandb/auto-release-notes.git#v0.2.0",
"lodash": "^4.17.21",
"release-it": "^14.1.0",
"typescript": "^4.3.5"
},
"release-it": {
"git": {
"requireCleanWorkingDir": false
},
"github": {
"release": true,
"releaseNotes": "cat ./staging/RELEASE.md"
},
"npm": {
"publish": false,
"release": false
},
"hooks": {
"before:init": "rm -rf ./staging/RELEASE.md"
},
"plugins": {
"./js/plugins/release.js": {
"legacy": false
}
}
}
}