-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.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
{
"name": "@epalmans/helpwanted",
"version": "0.1.2",
"description": "Scans the repos of your project's packages for issues labelled 'help wanted'",
"keywords": [
"contribute",
"help",
"helpwanted",
"issues",
"community",
"opensource",
"github",
"cli"
],
"repository": {
"type": "git",
"url": "git+https://github.com/epalmans/helpwanted.git"
},
"author": "Eddie Palmans <[email protected]> (https://github.com/epalmans)",
"license": "MIT",
"homepage": "https://github.com/epalmans/helpwanted#readme",
"bugs": {
"url": "https://github.com/epalmans/helpwanted/issues"
},
"preferGlobal": true,
"main": "./lib/helpwanted",
"bin": {
"helpwanted": "./bin/helpwanted"
},
"files": [
"lib",
"bin"
],
"dependencies": {
"colors": "1.0.3",
"date-fns": "^1.29.0",
"minimist": "^1.2.0",
"prompt": "^1.0.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.5"
},
"engines": {
"node": ">=5.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./bin/helpwanted"
}
}