-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 861 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
40
41
42
{
"name": "publish-cli",
"version": "1.6.0",
"description": "A simple script for publishing git repositories",
"main": "publish.js",
"scripts": {
"start": "./publish.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "igor9silva/publish"
},
"keywords": [
"publish",
"push",
"git"
],
"publish": {
"branch": "master",
"remote": "origin"
},
"author": {
"name": "Igor Silva",
"email": "[email protected]",
"url": "http://github.com/igor9silva"
},
"bin": {
"publish": "./publish.js"
},
"engines": {
"node": ">=5.0.0"
},
"preferGlobal": true,
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"cli": "^0.11.2",
"keypress-prompt": "^0.3.2",
"semver": "^5.1.0",
"simple-git": "^1.28.0"
}
}