-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.24 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.24 KB
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
{
"name": "github-stars-to-csv",
"version": "1.3.0",
"description": "A GitHub star aggregation library for graphs.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf dist && tsc",
"prepublish": "npm run build",
"start": "bin/github-stars-to-csv"
},
"files": [
"dist/**/*.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/entrostat/github-stars-to-csv.git"
},
"bin": {
"@kerren/github-stars-to-csv": "./dist/cli.js",
"github-stars-to-csv": "./dist/cli.js"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"github",
"stars",
"stargazers",
"cli",
"csv"
],
"author": "Kerren Ortlepp",
"license": "MIT",
"bugs": {
"url": "https://github.com/entrostat/github-stars-to-csv/issues"
},
"homepage": "https://github.com/entrostat/github-stars-to-csv#readme",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/moment": "^2.13.0",
"@types/node": "^12.0.3",
"@types/yargs": "^13.0.0",
"typescript": "^3.4.5"
},
"dependencies": {
"axios": "^0.18.0",
"moment": "^2.24.0",
"ora": "^3.4.0",
"promise-limit": "^2.7.0",
"yargs": "^13.2.4"
}
}