-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.23 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
{
"name": "peeare",
"version": "1.1.3",
"description": "Track your team's pull requests across multiple repos.",
"author": "Shay Davidson <shay.h.davidson@gmail.com>",
"keywords": [
"pr",
"github",
"cli",
"team",
"repo",
"track"
],
"repository": {
"type": "git",
"url": "https://github.com/ShayDavidson/peeare"
},
"license": "MIT",
"main": "src/cli.js",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "eslint ./src",
"format": "eslint --fix ./src"
},
"bin": {
"peeare": "./src/cli.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run format"
}
},
"dependencies": {
"colors": "^1.1.2",
"dot-file-config": "^0.6.1",
"kinder": "^1.0.2",
"lodash.flatten": "^4.4.0",
"lodash.maxby": "^4.6.0",
"lodash.sortby": "^4.7.0",
"node-ask": "^1.0.1",
"octokat": "^0.9.2",
"ora": "^1.3.0"
},
"devDependencies": {
"eslint": "^4.11.0",
"eslint-config-prettier": "^2.8.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.3.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-unicorn": "^3.0.0",
"husky": "^0.15.0-rc.3",
"prettier": "^1.8.2"
}
}