-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·58 lines (58 loc) · 1.64 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@wcj/github-rank",
"version": "22.10.25",
"description": "Github Users Ranking for China.",
"scripts": {
"start": "ejsc \"template/*.ejs\" -o web",
"get": "npm run get:users && npm run get:users:china && npm run get:users:info",
"get:o": "npm run get:trending && npm run get:repos",
"get:users:info": "node lib/getUserInfo.js",
"get:users": "node lib/getUsers.js",
"get:users:china": "node lib/getUsersChina.js",
"get:users:ORG": "node lib/getUsersChina.js",
"get:repos": "node lib/getRepos.js",
"get:trending": "node lib/getTrending.js",
"prepare": "npm run build",
"dev": "npm run watch",
"watch": "tsbb watch src/*.ts",
"build": "tsbb build src/*.ts"
},
"type": "module",
"author": "Kenny Wong <[email protected]>",
"license": "MIT",
"main": "dist/users.json",
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/github-rank.git"
},
"bugs": {
"url": "https://github.com/jaywcjlove/github-rank/issues"
},
"homepage": "http://jaywcjlove.github.io/github-rank/",
"funding": "https://jaywcjlove.github.io/#/sponsor",
"files": [
"dist",
"web"
],
"keywords": [
"github",
"github-ranking",
"rank",
"ranking"
],
"devDependencies": {
"@octokit/request": "~8.1.0",
"@types/cheerio": "~0.22.31",
"@types/dotenv": "~8.2.0",
"@types/fs-extra": "~11.0.0",
"@types/node-fetch": "~2.6.2",
"@uiw/formatter": "^2.0.2",
"@wcj/ejs-cli": "^1.1.3",
"cheerio": "~1.0.0-rc.12",
"console-emojis": "~2.0.0",
"dotenv": "~16.3.0",
"fs-extra": "^11.1.1",
"node-fetch": "^3.3.1",
"tsbb": "^4.1.4"
}
}