-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.32 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
{
"name": "multipull",
"version": "2.2.19",
"description": "Pull multiple git repositories",
"main": "pullRepos.js",
"scripts": {
"format": "prettier --write './**/*.js' '*.js'",
"lint": "./node_modules/.bin/eslint '**/*.js'",
"release": "npm version patch && npm publish",
"test": "./node_modules/.bin/jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Y--/multipull.git"
},
"author": "Yves Le Maout <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Y--/multipull/issues"
},
"bin": {
"multicheckout": "bin/multicheckout",
"multiexec": "bin/multiexec",
"multimerge": "bin/multimerge",
"multipr": "bin/multipr",
"multipull": "bin/multipull",
"multipush": "bin/multipush",
"multirebase": "bin/multirebase",
"multistatus": "bin/multistatus"
},
"homepage": "https://github.com/Y--/multipull#readme",
"dependencies": {
"cli-table": "Automattic/cli-table#b9ebd7570e20d885b7455c696d8fd2fcaa3c503f",
"colors": "^1.4.0",
"debug": "^4.3.4",
"github-api": "^3.4.0",
"progress": "^2.0.3",
"rc": "^1.2.8",
"simple-git": "3.26.0",
"tabtab": "^3.0.2"
},
"devDependencies": {
"eslint": "^9.9.1",
"eslint-plugin-jest": "^28.8.2",
"jest": "^29.2.0",
"prettier": "^3.3.3"
}
}