-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
61 lines (61 loc) · 1.35 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
{
"name": "git-mob-workspace",
"version": "3.2.3",
"description": "CLI tool for adding co-authors to commits.",
"private": true,
"workspaces": [
"packages/git-mob-core",
"packages/git-mob",
"packages/bob"
],
"scripts": {
"build": "npm run build --workspaces",
"checks": "npm run test && npm run lint",
"test:w": "echo \"Run per workspace.\"",
"test": "npm run test --workspaces",
"lint": "xo",
"minifytest": "npm run minifytest --workspaces",
"install": "npm install --ignore-scripts",
"prepack": "npm run prepack --workspaces",
"preversion": "npm run checks --workspaces",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "[email protected]:rkotze/git-mob.git"
},
"engines": {
"node": ">=16"
},
"keywords": [
"cli",
"cli-app",
"git-pair",
"git-duet",
"git",
"github",
"co-author",
"pairing",
"pair programming",
"mob programming",
"extreme programming",
"xp",
"social coding"
],
"author": "Richard Kotze",
"license": "MIT",
"contributors": [
{
"name": "Richard Kotze",
"url": "https://github.com/rkotze"
},
{
"name": "Dennis Ideler",
"url": "https://github.com/dideler"
}
],
"devDependencies": {
"eslint-plugin-jest": "^28.9.0",
"xo": "^0.59.3"
}
}