-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 898 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": "gh-star",
"version": "0.1.0",
"description": "NodeJS app that stars the GitHub repos referenced in a package.json file",
"preferGlobal": true,
"bin": {
"gh-star": "src/index.js"
},
"scripts": {
"test": "uvu __tests__"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fedebertolini/gh-star.git"
},
"keywords": [
"github",
"npm",
"npmjs",
"star"
],
"author": "Federico Bertolini",
"license": "MIT",
"bugs": {
"url": "https://github.com/fedebertolini/gh-star/issues"
},
"homepage": "https://github.com/fedebertolini/gh-star#readme",
"dependencies": {
"@octokit/rest": "^18.12.0",
"axios": "^0.24.0",
"hosted-git-info": "^4.0.2",
"inquirer": "^8.2.0",
"kleur": "^4.1.4",
"minimist": "^1.2.5",
"npm-package-arg": "^8.1.5"
},
"devDependencies": {
"uvu": "^0.5.2"
}
}