This repository has been archived by the owner on Jul 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.6 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
{
"name": "ghraphql",
"description": "Search GitHub for users by location.",
"version": "1.0.5",
"main": "index.js",
"bin": "cli.js",
"license": "AGPL-3.0",
"repository": "millette/ghraphql",
"author": {
"name": "Robin Millette",
"email": "[email protected]",
"url": "http://robin.millette.info"
},
"engines": {
"node": ">= 10.16.0"
},
"keywords": [
"github",
"graphql",
"users",
"location",
"cli"
],
"scripts": {
"deps": "dependency-check . --no-dev"
},
"lint-staged": {
"*.{html,js,json,md,mdx}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"semi": false,
"trailingComma": "es5"
},
"dependencies": {
"debug": "^4.1.1",
"delay": "^4.3.0",
"franc-min": "^4.1.1",
"get-best-contrast-color": "^0.3.1",
"got": "^9.6.0",
"lodash.countby": "^4.6.0",
"lodash.deburr": "^4.1.0",
"lodash.difference": "^4.5.0",
"lodash.groupby": "^4.6.0",
"lodash.intersectionwith": "^4.4.0",
"lodash.sortby": "^4.7.0",
"lodash.uniq": "^4.5.0",
"lodash.uniqby": "^4.7.0",
"lodash.words": "^4.2.0",
"marked": "^0.7.0",
"marked-terminal": "^3.3.0",
"meow": "^5.0.0",
"mkdirp": "^0.5.5",
"normalize-email-or-url": "^1.0.2",
"p-map": "^3.0.0",
"progress": "^2.0.3",
"rollodeqc-gh-user-streak": "^4.0.1",
"stopwords": "^0.0.9",
"weeknumber": "^1.1.2"
},
"devDependencies": {
"dependency-check": "^4.1.0",
"husky": "^4.2.3",
"lint-staged": "^10.1.1",
"prettier": "^2.0.2"
}
}