-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 987 Bytes
/
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
{
"name": "git-upload",
"version": "1.1.4",
"description": "gitu MSG = git add . && git commit -m MSG && git push",
"keywords": [
"gitu",
"git",
"add",
"push",
"commit"
],
"homepage": "https://github.com/yxliang01/git-upload.git",
"bin": {
"gitu": "dist/gitu.js",
"git-upload": "dist/gitu.js"
},
"scripts": {
"build": "babel src --out-dir dist",
"publish-please": "publish-please",
"prepublish": "publish-please guard",
"postpublish": "git push --tags"
},
"preferGlobal": true,
"bugs": "https://github.com/yxliang01/git-upload/issues",
"repository": "https://github.com/yxliang01/git-upload.git",
"author": "Xiao Liang Yu",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.18.0",
"publish-please": "^2.2.0"
},
"dependencies": {
"assert": "^1.4.1",
"colors": "^1.1.2",
"figlet": "^1.2.0"
}
}