-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2 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
{
"name": "@template-tools/sync-cli",
"version": "0.0.0-semantic-release",
"publishConfig": {
"access": "public",
"provenance": true
},
"description": "cli for @template-tools/template-sync",
"contributors": [
{
"name": "Markus Felten",
"email": "markus.felten@gmx.de"
}
],
"license": "BSD-2-Clause",
"bin": {
"template-sync": "./src/template-sync-cli.mjs"
},
"scripts": {
"test": "node --run test:ava",
"test:ava": "ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs",
"cover": "c8 -x 'tests/**/*' --temp-directory build/tmp ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs && c8 report -r lcov -o build/coverage --temp-directory build/tmp",
"docs": "documentation readme --section=API ./src**/*.mjs",
"lint": "node --run lint:docs",
"lint:docs": "documentation lint ./src**/*.mjs"
},
"dependencies": {
"@template-tools/template-sync": "^14.3.3",
"aggregation-repository-provider": "^7.0.4",
"bitbucket-repository-provider": "^6.0.29",
"chalk": "^5.4.1",
"commander": "^13.0.0",
"etag-cache-leveldb": "^2.1.7",
"gitea-repository-provider": "^4.2.5",
"github-repository-provider": "^9.0.21",
"leveldown": "^6.1.1",
"levelup": "^5.1.1",
"local-repository-provider": "^9.0.1",
"read-package-up": "^11.0.0",
"remove-sensible-values": "^1.3.1",
"repository-provider-cli-support": "^2.2.13"
},
"devDependencies": {
"ava": "^6.2.0",
"c8": "^10.1.3",
"documentation": "^14.0.3",
"execa": "^9.5.2",
"semantic-release": "^24.2.1"
},
"engines": {
"node": ">=22.13.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/template-tools/template-sync-cli.git"
},
"bugs": {
"url": "https://github.com/template-tools/template-sync-cli/issues"
},
"homepage": "https://github.com/template-tools/template-sync-cli#readme",
"template": {
"inheritFrom": [
"arlac77/template-arlac77-github",
"arlac77/template-node-app"
]
}
}