-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.37 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
{
"name": "@labset/git-workspaces",
"version": "4.3.0",
"description": "git workspace cli extensions",
"preferGlobal": false,
"bin": {
"git-list-remote": "dist/bin/git-list-remote.js",
"git-merged": "dist/bin/git-merged.js",
"git-recent": "dist/bin/git-recent.js",
"git-squashed": "dist/bin/git-squashed.js",
"git-stale": "dist/bin/git-stale.js",
"git-sync-bitbucket": "dist/bin/git-sync-bitbucket.js",
"git-sync-github": "dist/bin/git-sync-github.js",
"git-tidy": "dist/bin/git-tidy.js",
"git-workspace": "dist/bin/git-workspace.js",
"git-workspace-add": "dist/bin/git-workspace-add.js",
"git-workspace-clone": "dist/bin/git-workspace-clone.js",
"git-workspace-config": "dist/bin/git-workspace-config.js",
"git-workspace-exec": "dist/bin/git-workspace-exec.js",
"git-workspace-prs": "dist/bin/git-workspace-prs.js",
"git-workspace-remove": "dist/bin/git-workspace-remove.js",
"git-workspace-sync": "dist/bin/git-workspace-sync.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watchAll",
"format:check": "prettier --check .",
"format": "prettier --check --write .",
"lint": "eslint src/ --ext .ts,.tsx,.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/viqueen/git-workspaces.git"
},
"files": [
"dist"
],
"keywords": [
"git",
"cli",
"extensions"
],
"author": "Hasnae R.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/viqueen/git-workspaces/issues"
},
"homepage": "https://github.com/viqueen/git-workspaces#readme",
"devDependencies": {
"@labset-eslint/eslint-plugin": "^1.2.0",
"@types/cli-progress": "^3.11.0",
"@types/inquirer": "^8.2.4",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.17.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.39.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.4.3",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "5.7.2"
},
"dependencies": {
"@labset/leveldb-registry": "^1.3.0",
"@labset/task-pool-executor": "^2.3.0",
"axios": "^1.7.7",
"commander": "^12.0.0",
"inquirer": "^8.2.5",
"lodash": "^4.17.21",
"simple-git": "^3.26.0"
}
}