-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.11 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
{
"name": "arcanist",
"version": "0.0.1",
"description": "phabricator arcanist in nodejs",
"main": "index.js",
"bin": {
"arc": "index.js"
},
"files": [
"index.js",
"README.md",
"latest",
"install.js"
],
"scripts": {
"update": "cd arcanist && git pull && cd ../libphutil && git pull && cd ..",
"pack": "tar -zcf arcanist-`date '+%Y-%m-%d'`.tar.gz arcanist/ && tar -zcf libphutil-`date '+%Y-%m-%d'`.tar.gz libphutil/",
"upload": "deploy-asset *.tar.gz --destDir arc -u cdn -d && date '+%Y-%m-%d' > latest",
"build": "rm -rf *.tar.gz && npm run update && npm run pack && npm run upload && rm -rf *.tar.gz",
"install": "node install.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hujiang-FE/arcanist.git"
},
"keywords": [
"arcanist",
"phabricator",
"review",
"code"
],
"author": "Mora",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hujiang-FE/arcanist/issues"
},
"homepage": "https://github.com/Hujiang-FE/arcanist#readme",
"dependencies": {
"cross-spawn": "^2.0.0",
"download": "^4.4.1"
}
}