forked from jaywcjlove/github-rank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.91 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
59
60
61
62
63
{
"name": "@wcj/github-rank",
"version": "19.05.06",
"description": "Github Users Ranking for China.",
"scripts": {
"start": "node lib/build.js",
"get": "npm run get:users && npm run get:users:china && npm run get:users:info && npm run get:repos && npm run get:trending",
"get:users:info": "node lib/getUserInfo.js",
"star": "node lib/getUserInfoStars.js",
"get:users": "node lib/getUsers.js",
"get:users:china": "node lib/getChinaUsers.js",
"get:repos": "node lib/getRepos.js",
"get:trending": "node lib/getTrending.js",
"dev": "npm run build:cjs -- --watch",
"prepare": "npm run build:cjs",
"deploy": "gh-pages -d web -m '2019-05-06'",
"build:cjs": "BABEL_ENV=cjs babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline --copy-files --delete-dir-on-start --verbose"
},
"author": "Kenny Wong <wowohoo@qq.com>",
"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/",
"files": [
"dist",
"web"
],
"keywords": [
"github",
"github-ranking",
"rank",
"ranking"
],
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-typescript": "^7.3.3",
"@babel/runtime": "^7.4.3",
"@types/cheerio": "^0.22.11",
"@types/dotenv": "^6.1.1",
"@types/ejs": "^2.6.3",
"@types/fs-extra": "^5.0.5",
"@types/node": "^11.13.4",
"@types/node-fetch": "^2.3.2",
"cheerio": "^1.0.0-rc.3",
"dotenv": "^7.0.0",
"ejs": "^2.6.1",
"fs-extra": "^7.0.1",
"gh-pages": "^2.0.1",
"jest": "^24.7.1",
"node-fetch": "^2.3.0",
"typescript": "^3.4.3"
},
"dependencies": {}
}