-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.03 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.03 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
{
"name": "@mapbox/github-stats-collector",
"version": "1.0.0",
"description": "Collect information about repos and issues from GitHub",
"main": "index.js",
"bin": {
"collect-repo-stats": "./bin/collect-repo-stats"
},
"scripts": {
"test": "eslint --ext js {lib,bin}"
},
"eslintConfig": {
"extends": "eslint-config-unstyled",
"parserOptions": {
"ecmaVersion": 6
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/mapbox/github-stats-collector.git"
},
"author": "",
"license": "BSD-3",
"bugs": {
"url": "https://github.com/mapbox/github-stats-collector/issues"
},
"homepage": "https://github.com/mapbox/github-stats-collector#readme",
"dependencies": {
"colors": "^1.1.2",
"commander": "^2.9.0",
"d3-queue": "^3.0.4",
"ejs": "^2.5.6",
"github": "^9.1.0",
"js-yaml": "^3.8.2",
"retry": "^0.10.1",
"rimraf": "^2.6.1",
"tmp": "0.0.31"
},
"devDependencies": {
"eslint": "^3.17.0",
"eslint-config-unstyled": "^1.1.0"
}
}