-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·40 lines (40 loc) · 1.14 KB
/
package.json
File metadata and controls
executable file
·40 lines (40 loc) · 1.14 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
{
"name": "github-readme-stats-calculator-cli",
"version": "1.0.0",
"description": "Calculate github-readme-stats score & Get values used in calculations",
"publishConfig": {
"access": "public"
},
"bin": {
"grsc": "./bin/github-readme-stats-calculator.js"
},
"scripts": {
"build": "tsc",
"start": "node /bin/github-readme-stats-calculator.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ckyeon/github-readme-stats-calculator-cli.git"
},
"author": "Kiyeon Cho",
"license": "MIT",
"bugs": {
"url": "https://github.com/ckyeon/github-readme-stats-calculator-cli/issues"
},
"homepage": "https://github.com/ckyeon/github-readme-stats-calculator-cli#readme",
"dependencies": {
"axios": "^0.27.2",
"chalk": "^4.1.2",
"chork": "^2.0.0-alpha.0",
"commander": "^9.4.0",
"github-username-regex": "^1.0.0"
},
"devDependencies": {
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.0",
"typescript": "^4.8.2"
}
}