-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.16 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
{
"name": "@nicodoggie/devctl-plugin-arcanist",
"version": "1.2.8",
"main": "index.js",
"author": "Nico Suarez <[email protected]>",
"license": "MIT",
"preferGlobal": true,
"bin": {
"arc": "./arcanist/arcanist/bin/arc"
},
"scripts": {
"postinstall": "node bin/install.js"
},
"dependencies": {
"adm-zip": "^0.4.16",
"command-exists": "^1.2.9",
"find-up": "^4.1.0",
"lodash": "^4.17.19",
"node-fetch": "^2.6.0"
},
"peerDependencies": {
"@splitmedialabs/devctl": "3.1.3"
},
"devctl-plugin-arcanist": {
"aliases": {
"pullmaster": [
"!bash",
"-c",
"git checkout master && git pull"
],
"pull": [
"!devctl",
"arc:pull"
],
"update-patch": [
"!devctl",
"arc:pull"
],
"review": [
"!devctl",
"arc:review"
],
"accept": [
"!devctl",
"arc:accept"
],
"diffland": [
"!devctl",
"arc:diffland"
],
"yolomerge": [
"!devctl",
"arc:diffland"
],
"patchland": [
"!devctl",
"arc:patchland"
]
}
}
}