-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
63 lines (63 loc) · 1.39 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
{
"name": "@octoherd/cli",
"publishConfig": {
"access": "public"
},
"type": "module",
"version": "0.0.0-development",
"description": "CLI to run a custom script on one or multiple repositories",
"exports": {
".": "./index.js",
"./run": "./bin/run.js"
},
"bin": {
"octoherd": "bin/octoherd.js"
},
"types": "index.d.ts",
"dependencies": {
"@octoherd/octokit": "^5.0.0",
"@octokit/auth-oauth-device": "^7.0.0",
"@octokit/openapi-types": "^22.0.0",
"chalk": "^5.0.0",
"clipboardy": "^4.0.0",
"enquirer": "^2.3.6",
"jsonfile": "^6.0.1",
"mkdirp": "^3.0.0",
"tempy": "^3.0.0",
"yargs": "^17.0.0-candidate.10"
},
"devDependencies": {
"@octokit/openapi": "^17.0.0",
"prettier": "^3.0.0",
"simple-mock": "^0.8.0",
"uvu": "^0.5.1"
},
"scripts": {
"test": "uvu tests"
},
"keywords": [
"github",
"repository",
"maintenance",
"cli"
],
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"license": "ISC",
"repository": "github:octoherd/cli",
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"@semantic-release/npm",
[
"semantic-release-plugin-update-version-in-files",
{
"files": [
"version.js"
]
}
]
]
}
}