-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 1.46 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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "push-to-git",
"version": "1.1.4",
"description": "CLI tool to simplify deployment to 'external git repositories' or 'remote branches with attached onPush action webhooks'",
"main": "./src/index.js",
"bin": {
"push-to-git": "./src/index.js"
},
"scripts": {
"test": "xo",
"start": "./src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bjesuiter/deploy-to-git.git"
},
"keywords": [
"cli",
"git",
"deployment",
"continuous-deployment",
"continuous-integration",
"ci",
"cd",
"dev-ops",
"project"
],
"author": "Benjamin Jesuiter",
"license": "ISC",
"bugs": {
"url": "https://github.com/bjesuiter/deploy-to-git/issues"
},
"homepage": "https://github.com/bjesuiter/deploy-to-git#readme",
"files": [
"package.json",
"src",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"dependencies": {
"child-process-promise": "^2.2.1",
"commander": "^4.1.1",
"console-prompt": "^1.0.0",
"project-version": "^1.2.1"
},
"devDependencies": {
"ava": "^5.2.0",
"esm": "^3.2.25",
"xo": "^0.53.1"
},
"xo": {
"space": false,
"rules": {
"quotes": [
"error",
"single",
{
"allowTemplateLiterals": true
}
],
"prefer-destructuring": [
"error",
{
"array": false,
"object": false
},
{
"enforceForRenamedProperties": false
}
],
"no-trailing-spaces": [
"error",
{
"skipBlankLines": true,
"ignoreComments": true
}
]
}
}
}