-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.63 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.63 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
{
"name": "repo-hero",
"version": "1.0.0",
"description": "Configurable product management analysis tool for analyzing the health of GitHub repositories and their contributors.",
"main": "gather-and-rank.js",
"scripts": {
"format": "npx prettier --write . $@",
"test": "echo \"Error: no test specified\" && exit 1",
"config": "node configurator.js $1",
"start": "rm -rf .results_history/*.csv && rm -rf .results_history/combined_results.json && node gather-and-rank.js && node results-combiner.js && node results-charter.js && node results-team-charter.js && node active-users-by-date.js",
"gather": "node gather-and-rank.js",
"combine": "rm -rf .results_history/combined_results.json && node results-combiner.js",
"chart": "rm -rf .results_history/*.csv && node results-charter.js; node results-team-charter.js",
"help": "node help.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bmartinson/repo-hero.git"
},
"keywords": [
"github",
"nodejs",
"git",
"cli",
"jira",
"kpi",
"ranker"
],
"author": "Brian Martinson",
"license": "MIT",
"bugs": {
"url": "https://github.com/bmartinson/repo-hero/issues"
},
"homepage": "https://github.com/bmartinson/repo-hero#readme",
"dependencies": {
"axios": "^1.13.2",
"axios-cache-interceptor": "^1.11.3",
"axios-rate-limit": "^1.4.0",
"csv-writer": "^1.6.0",
"exec": "^0.2.1",
"fs": "^0.0.1-security",
"node-fetch": "^3.3.2",
"path": "^0.12.7",
"uuid": "^13.0.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"prettier": "^3.8.0"
}
}