-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.38 KB
/
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
41
42
43
44
45
46
{
"name": "github-viewer-stats",
"version": "1.0.4",
"description": "Small NPM package for collecting your own GitHub statistics",
"homepage": "https://github.com/TomerFi/github-viewer-stats#readme",
"license": "ISC",
"author": {
"name": "Tomer Figenblat",
"url": "https://github.com/TomerFi"
},
"repository": "github:TomerFi/github-viewer-stats",
"bugs": "https://github.com/TomerFi/github-viewer-stats/issues",
"keywords": [
"github",
"contributions",
"statistics"
],
"bin": "src/cli.js",
"main": "src/index.js",
"files": [
"!*",
"src/api.js",
"src/contribs.js",
"src/org.js",
"src/repo.js"
],
"engines": {
"node": ">= 18.0.0",
"npm": ">= 9.0.0"
},
"scripts": {
"lint": "eslint src",
"contribs": "node -e \"async function run() { console.log(JSON.stringify(await require('./src/contribs')(), null, 2)) } run()\"",
"repo": "run(){ node -e \"async function run() { console.log(JSON.stringify(await require('./src/repo')('$1'), null, 2)) } run()\"; }; run",
"org": "run(){ node -e \"async function run() { console.log(JSON.stringify(await require('./src/org')('$1'), null, 2)) } run()\"; }; run"
},
"dependencies": {
"@octokit/graphql": "^8.1.1"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"eslint": "^9.1.1",
"eslint-plugin-editorconfig": "^4.0.2",
"globals": "^15.1.0"
}
}