forked from rahul-jha98/github-stats-transparent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 766 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 766 Bytes
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
{
"name": "@tilli-pro/org-stats",
"version": "0.0.1",
"description": "Generate stats for a GitHub organization",
"type": "module",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "dotenv -- tsx src/index.ts",
"start": "node dist/index.js",
"test": "jest"
},
"keywords": [],
"author": "Ibrahim Saberi",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@tilli-pro/eslint-config": "^2.0.2",
"@types/node": "^22.10.2",
"dotenv": "^16.4.7",
"dotenv-cli": "^8.0.0",
"jest": "^29.7.0",
"ora-classic": "^5.4.2",
"terminal-image": "^3.1.1",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@octokit/rest": "^21.0.2"
}
}