-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 925 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
{
"name": "github-contribution-scraper",
"version": "1.0.0",
"description": "A command-line tool that uses the GitHub API to collect contribution data.",
"main": "getGitHubContributions.js",
"scripts": {
"lint": "eslint . --max-warnings=0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roryabraham/github-contribution-scraper.git"
},
"author": "roryabraham",
"license": "MIT",
"bugs": {
"url": "https://github.com/roryabraham/github-contribution-scraper/issues"
},
"homepage": "https://github.com/roryabraham/github-contribution-scraper#readme",
"dependencies": {
"@octokit/plugin-throttling": "^3.5.1",
"@octokit/rest": "^18.9.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"process": "^0.11.10",
"underscore": "^1.13.1",
"yargs": "^17.1.1"
},
"devDependencies": {
"eslint": "^7.32.0"
}
}