-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.73 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.73 KB
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
{
"name": "@mozheng-neal/github_cli",
"version": "1.0.9",
"description": "github的命令行操作工具",
"scripts": {
"test": "jest --watch",
"build": "./node_modules/.bin/tsc",
"watch": "./node_modules/.bin/tsc -w",
"clean": "rm -rf bin lib",
"prepublish": "npm run clean && npm run build"
},
"bin": {
"gh": "./bin/index.js",
"gh_rs": "./bin/github_repos.js",
"gh_iu": "./bin/github_issues.js",
"gh_pr": "./bin/github_pullrequest.js",
"gh_rt": "./bin/github_reaction.js",
"gh_us": "./bin/github_users.js",
"gh_sr": "./bin/github_search.js"
},
"dependencies": {
"axios": "^0.17.1",
"chalk": "^2.3.1",
"cli-progress": "^1.7.0",
"commander": "^2.14.1",
"hyperlinker": "^1.0.0",
"node-emoji": "^1.8.1",
"ora": "^1.4.0",
"request-promise": "^4.2.2",
"stringz": "^0.4.0",
"supports-hyperlinks": "^1.0.1",
"update-notifier": "^2.3.0",
"wide-align": "^1.1.2",
"cfonts": "^1.1.3",
"cli-table2": "^0.2.0",
"inquirer": "^4.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NealST/github-cli.git"
},
"keywords": [
"github",
"cli"
],
"author": "mozheng-neal",
"license": "ISC",
"bugs": {
"url": "https://github.com/NealST/github-cli/issues"
},
"homepage": "https://github.com/NealST/github-cli#readme",
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/cli-table2": "^0.2.1",
"@types/commander": "^2.12.2",
"@types/inquirer": "0.0.36",
"@types/node": "^8.9.4",
"@types/ora": "^1.3.2",
"@types/update-notifier": "^2.0.0",
"@types/node-emoji": "^1.8.0",
"jest": "^22.4.2",
"tslint": "^5.9.1",
"typescript": "^2.7.2",
"webpack": "^3.11.0"
}
}