-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.26 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.26 KB
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
{
"name": "ignore-github-users",
"version": "0.0.0-development",
"description": "Remove GitHub notifications from specific users",
"license": "MIT",
"repository": "RichardLitt/ignore-github-users",
"author": {
"name": "Richard Littauer",
"email": "richard.littauer@gmail.com",
"url": "burntfen.com"
},
"bin": "cli.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"lint": "standard",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "ava test.js"
},
"files": [
"index.js",
"cli.js"
],
"keywords": [
"cli-app",
"cli",
"greenkeeper",
"bot",
"greenkeeper-bot",
"friedel"
],
"dependencies": {
"bluebird": "^3.1.1",
"ghauth": "^3.2.1",
"meow": "^5.0.0",
"octokat": "^0.10.0",
"pify": "^4.0.0",
"stringorarraytoarray": "^1.0.1"
},
"devDependencies": {
"ava": "^0.25.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.3.0",
"eslint-plugin-standard": "^4.0.0",
"semantic-release": "^15.10.7",
"standard": "^13.0.1"
},
"standard": {
"ignore": [
"test.js"
]
}
}