-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.13 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
{
"name": "readysteady",
"type": "module",
"version": "2.0.1",
"description": "A simple way to upload your assets and prepare a new draft release on GitHub",
"main": "index.js",
"bin": "./cli.js",
"engines": {
"node": ">=14"
},
"scripts": {
"test": "xo && ava --verbose"
},
"files": [
"index.js",
"cli.js",
"client.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/davidwinter/readysteady.git"
},
"keywords": [
"github",
"releases",
"artifacts",
"ci"
],
"author": {
"name": "David Winter",
"email": "[email protected]",
"url": "https://davidwinter.dev"
},
"license": "MIT",
"funding": "https://github.com/davidwinter/readysteady?sponsor=1",
"bugs": {
"url": "https://github.com/davidwinter/readysteady/issues"
},
"homepage": "https://github.com/davidwinter/readysteady#readme",
"devDependencies": {
"ava": "^4.3.3",
"xo": "^0.52.3"
},
"dependencies": {
"@octokit/core": "^4.0.5",
"@octokit/plugin-paginate-rest": "^5.0.1",
"@octokit/plugin-rest-endpoint-methods": "^6.6.2",
"meow": "^11.0.0",
"ora": "^6.0.0",
"read-package-json": "^6.0.0",
"update-notifier": "^6.0.2"
}
}