-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.25 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
78
79
80
81
82
83
{
"name": "@template-tools/template-sync",
"version": "0.0.0-semantic-release",
"publishConfig": {
"access": "public",
"provenance": true
},
"exports": {
".": "./src/context.mjs"
},
"description": "Keep repository in sync with its template",
"keywords": [
"bitbucket",
"boilerplate",
"degit",
"git",
"github",
"npm",
"scaffolding",
"template"
],
"contributors": [
{
"name": "Markus Felten",
"email": "[email protected]"
}
],
"license": "BSD-2-Clause",
"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": {
"@babel/core": "^7.26.0",
"@iarna/toml": "^3.0.0",
"@yarnpkg/lockfile": "^1.1.0",
"babylon": "^6.18.0",
"content-entry": "^11.1.3",
"expression-expander": "^7.2.5",
"hinted-tree-merger": "^6.2.6",
"loglevel-mixin": "^7.2.2",
"markdown": "^0.5.0",
"matching-iterator": "^2.1.3",
"one-time-execution-method": "^3.1.1",
"recast": "^0.23.9",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"unified": "^11.0.5",
"yaml": "^2.6.1"
},
"devDependencies": {
"ava": "^6.2.0",
"c8": "^10.1.2",
"content-entry-filesystem": "^7.1.1",
"documentation": "^14.0.3",
"execa": "^9.5.1",
"github-repository-provider": "^9.0.21",
"mock-repository-provider": "^8.2.16",
"semantic-release": "^24.2.0"
},
"engines": {
"node": ">=22.11.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/template-tools/template-sync.git"
},
"bugs": {
"url": "https://github.com/template-tools/template-sync/issues"
},
"homepage": "https://github.com/template-tools/template-sync#readme",
"template": {
"inheritFrom": [
"arlac77/template-arlac77-github",
"arlac77/template-javascript-component",
"arlac77/template-node-component"
]
}
}