forked from rkotze/git-mob
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 2.26 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "git-mob",
"version": "0.4.0",
"description": "CLI tool for including co-authors in commits.",
"scripts": {
"test": "env-cmd test-helpers/.env ava --verbose --serial && npm run js-lint",
"test:w": "env-cmd test-helpers/.env ava --watch",
"js-lint": "xo",
"preversion": "npm test -s"
},
"bin": {
"git-mob": "bin/mob.js",
"git-solo": "bin/solo.js",
"git-mob-print": "bin/mob-print.js"
},
"repository": {
"type": "git",
"url": "git@github.com:findmypast-oss/git-mob.git"
},
"engines": {
"node": ">=8"
},
"keywords": [
"cli",
"cli-app",
"git-pair",
"git-duet",
"git",
"github",
"co-author",
"pairing",
"pair programming",
"mob programming",
"extreme programming",
"xp",
"social coding"
],
"author": "Findmypast <oss@findmypast.com> (https://tech.findmypast.com)",
"license": "MIT",
"contributors": [
{
"name": "Richard Kotze",
"email": "rkotze@findmypast.com",
"url": "https://github.com/rkotze"
},
{
"name": "Dennis Ideler",
"email": "dideler@findmypast.com",
"url": "https://github.com/dideler"
}
],
"dependencies": {
"common-tags": "^1.7.2",
"minimist": "^1.2.0",
"update-notifier": "^2.5.0"
},
"devDependencies": {
"ava": "*",
"env-cmd": "^8.0.1",
"eol": "^0.9.1",
"sinon": "^4.3.0",
"tempy": "^0.2.1",
"xo": "*"
},
"xo": {
"space": true,
"rules": {
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_"
}
],
"object-curly-spacing": [
"error",
"always"
],
"curly": [
"error",
"multi-line"
],
"comma-dangle": [
"error",
"only-multiline"
],
"ava/no-skip-test": "off",
"linebreak-style": "off",
"operator-linebreak": [
"error",
"after",
{
"overrides": {
"?": "ignore",
":": "ignore"
}
}
],
"valid-jsdoc": [
"warn",
{
"requireParamDescription": false,
"requireReturn": false
}
]
}
},
"ava": {
"files": [
"**/*.spec.js"
],
"source": [
"**/*.js"
]
}
}