-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.21 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
{
"name": "github-release-stats",
"version": "1.0.2",
"description": "Library for fetching the GitHub release download count and other statistics",
"homepage": "https://github.com/kefir500/github-release-stats#readme",
"bugs": "https://github.com/kefir500/github-release-stats/issues",
"author": "Alexander Gorishnyak",
"license": "MIT",
"main": "lib/ghstats.js",
"browser": {
"node-fetch": "./lib/fetch.js"
},
"scripts": {
"start": "node bin/ghstats-cli.js",
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"prepublishOnly": "npm run build"
},
"bin": {
"ghstats": "bin/ghstats-cli.js"
},
"files": [
"bin/ghstats-cli.js",
"lib/ghstats.d.ts",
"lib/ghstats.js",
"lib/fetch.js"
],
"repository": {
"type": "git",
"url": "https://github.com/kefir500/github-release-stats.git"
},
"keywords": [
"github",
"release",
"download",
"statistics"
],
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^15.12.5",
"@types/node-fetch": "^2.5.10",
"jest": "^27.0.6",
"jest-fetch-mock": "^3.0.3",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4"
},
"dependencies": {
"node-fetch": "^2.6.1"
}
}