-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 1.12 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
66
67
68
{
"name": "is-mergeable",
"version": "1.2.0",
"description": "Check if a GitHub Pull Request is in a (most likely) mergeable state",
"main": "index.js",
"author": "Jamie Kyle <[email protected]>",
"license": "MIT",
"bin": {
"is-mergeable": "dist/cli.js"
},
"files": [
"dist"
],
"keywords": [
"github",
"gh",
"api",
"pull",
"request",
"pr",
"merge",
"rebase",
"mergeable",
"mergable",
"branch",
"protections",
"ci",
"check",
"status",
"review",
"approve",
"approval",
"requested",
"changes",
"rejected"
],
"scripts": {
"build": "tsc && chmod +x dist/cli.js",
"test": "ava",
"format": "prettier --write '**'",
"prepublishOnly": "npm run -s build"
},
"devDependencies": {
"@types/meow": "^5.0.0",
"ava": "^2.4.0",
"husky": "^3.0.5",
"lint-staged": "^9.4.0",
"prettier": "^1.18.2",
"typescript": "^3.6.3"
},
"dependencies": {
"@octokit/rest": "^16.30.1",
"chalk": "^2.4.2",
"meow": "^5.0.0",
"terminal-link": "^2.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**": [
"prettier --write",
"git add"
]
}
}