-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 903 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
39
40
{
"name": "git-orca",
"version": "1.1.0",
"type": "module",
"description": "A CLI tool to retrieve GitHub issues/PRs from a project and store in JSON.",
"bin": {
"git-orca": "./index.js"
},
"main": "./index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Lennox Charles",
"license": "MIT",
"git repository": "https://github.com/lennyAiko/git-orca.git",
"keywords": [
"git",
"github",
"issues",
"pr",
"git-issues",
"git-pr",
"cli",
"cli-app"
],
"bugs": {
"url": "https://github.com/lennyAiko/git-orca/issues"
},
"homepage": "https://github.com/lennyAiko/git-orca",
"engines": {
"node": "^14.13.1 || >=16.0.0"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"@octokit/rest": "^20.0.1",
"dotenv": "^16.3.1",
"minimist": "^1.2.8",
"picocolors": "^1.0.0"
}
}