-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
51 lines (51 loc) · 1 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
{
"name": "libgfi",
"version": "1.1.1",
"description": "A module for finding good-first-issues in open source projects.",
"main": "index.js",
"scripts": {
"pretest": "standard",
"test": "jest --collectCoverage"
},
"files": [
"bin/",
"lib/",
"data/",
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/cutenode/libgfi.git"
},
"homepage": "https://github.com/cutenode/libgfi",
"keywords": [
"cli",
"node-cli",
"good-first-issue",
"github",
"community"
],
"author": "Tierney Cyren <[email protected]> (http://bnb.im)",
"license": "MIT",
"standard": {
"ignore": [
"**/*.spec.js"
]
},
"engines": {
"node": ">=8.0.0"
},
"bugs": {
"url": "https://github.com/cutenode/libgfi/issues",
"email": "[email protected]"
},
"dependencies": {
"@octokit/rest": "^16.0.1"
},
"devDependencies": {
"jest": "^23.6.0",
"markdown-magic": "^0.1.25",
"nock": "^10.0.4",
"standard": "^12.0.1"
}
}