This repository has been archived by the owner on Nov 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
78 lines (78 loc) · 1.61 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@ghuser/github-contribs",
"version": "2.2.4",
"description": "List all GitHub repos a user has contributed to since the beginning of time.",
"license": "Unlicense",
"repository": {
"type": "git",
"url": "https://github.com/ghuser-io/github-contribs.git"
},
"author": {
"name": "Aurelien Lourot",
"email": "aurelien.lourot@gmail.com",
"url": "https://github.com/AurelienLourot"
},
"bin": "cli.js",
"engines": {
"node": ">=8"
},
"scripts": {
"test": "xo && nyc ava"
},
"keywords": [
"cli-app",
"cli",
"github",
"repo",
"repositories",
"contrib",
"contribs",
"contributions"
],
"dependencies": {
"es6-promise-pool": "^2.5.0",
"fetch-retry": "^1.2.1",
"htmlparser": "^1.7.7",
"meow": "^3.3.0",
"moment": "^2.22.1",
"ora": "^2.0.0"
},
"devDependencies": {
"all-contributors-cli": "^5.4.0",
"ava": "*",
"codecov": "^3.0.2",
"nyc": "^12.0.2",
"xo": "0.23.0"
},
"xo": {
"esnext": true,
"rules": {
"brace-style": "off",
"capitalized-comments": "off",
"comma-dangle": "off",
"indent": "off",
"max-depth": "off",
"max-params": "off",
"no-unused-vars": "off",
"no-use-before-define": "off",
"no-warning-comments": "off",
"padded-blocks": "off",
"spaced-comment": "off",
"unicorn/explicit-length-check": "off"
},
"space": true
},
"nyc": {
"reporter": [
"html",
"lcov",
"text"
],
"all": true,
"extension": [
".js"
],
"check-coverage": true,
"lines": 75
}
}