-
Notifications
You must be signed in to change notification settings - Fork 123
/
package.json
65 lines (65 loc) · 1.39 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
{
"name": "good-first-issue",
"version": "0.27.2",
"description": "A CLI for finding good-first-issues in open source projects.",
"main": "index.js",
"scripts": {
"toc": "npx markdown-toc -i readme.md",
"markdown": "npx markdown-magic",
"pretest": "standard",
"test": "jest --collectCoverage"
},
"bin": {
"good-first-issue": "./bin/good-first-issue.js"
},
"files": [
"bin/",
"lib/",
"data",
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/bnb/good-first-issue.git"
},
"homepage": "https://github.com/bnb/good-first-issue",
"keywords": [
"cli",
"node-cli",
"good-first-issue",
"github",
"community",
"first-timers",
"help-wanted"
],
"author": "Tierney Cyren <[email protected]> (http://bnb.im)",
"license": "MIT",
"standard": {
"ignore": [
"**/*.spec.js"
]
},
"engines": {
"node": ">=8.0.0"
},
"bugs": {
"url": "https://github.com/bnb/good-first-issue/issues",
"email": "[email protected]"
},
"contributors": [
"Dhruv Jain <[email protected]> (https://maddhruv.github.io)"
],
"dependencies": {
"boxen": "^4.2.0",
"chalk": "^3.0.0",
"commander": "^4.0.1",
"inquirer": "^7.0.0",
"libgfi": "^1.1.1",
"open": "^7.0.0"
},
"devDependencies": {
"jest": "^23.6.0",
"strip-ansi": "^6.0.0",
"standard": "^14.0.0"
}
}