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{
"name": "git-glob-cp",
"alias": "ggcp",
"version": "1.10.4",
"description": "glob-aware two-way copying for git",
"type": "module",
"bin": {
"git-glob-cp": "./src/main/js/cli.js",
"git-glob-copy": "./src/main/js/cli.js",
"ggcp": "./src/main/js/cli.js"
},
"exports": {
".": "./src/main/js/index.js"
},
"types": "./src/main/js/index.d.ts",
"scripts": {
"build": "yarn run build:docs",
"build:docs": "mkdir -p docs && cp ./README.md ./docs/README.md",
"test": "vitest run --config ./vitest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antongolub/git-glob-cp.git"
},
"keywords": [
"git",
"glob",
"copy"
],
"author": "Anton Golub <antongolub@antongolub.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/antongolub/git-glob-cp/issues"
},
"homepage": "https://github.com/antongolub/git-glob-cp#readme",
"dependencies": {
"tar": "^7.4.3",
"zx-extra": "^4.0.16"
},
"devDependencies": {
"@vitest/coverage-v8": "^3.2.4",
"vitest": "^3.2.4"
},
"files": [
"src/main",
"LICENSE",
"README.md",
"CHANGELOG.md"
]
}