-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.12 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.12 KB
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
{
"name": "template-sync-action",
"version": "0.0.0-semantic-release",
"publishConfig": {
"access": "public",
"provenance": true
},
"packageManager": "npm@11.6.4+sha512.1118cab46a05a50aee6bff5b1b4fa1df18afff89d57465620a3518035026955db87c5bdf9d207b07b7487d99f2490d450cb774655ad63ec2cba7bf1d0ad25d45",
"main": "./dist/index.mjs",
"exports": {
".": "./dist/index.mjs"
},
"description": "github action for template-sync",
"keywords": [
"action",
"github",
"template"
],
"contributors": [
{
"name": "Markus Felten",
"email": "markus.felten@gmx.de"
}
],
"license": "0BSD",
"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 ./index.mjs",
"lint": "node --run lint:docs",
"lint:docs": "documentation lint ./index.mjs",
"build": "ncc build index.mjs --license LICENSE"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.1.1",
"@template-tools/template-sync": "^14.3.52",
"github-repository-provider": "^10.0.30"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/release-notes-generator": "^14.1.0",
"@vercel/ncc": "^0.38.4",
"ava": "^8.0.0",
"c8": "^11.0.0",
"documentation": "^14.0.3",
"semantic-release": "^25.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/template-tools/template-sync-action.git"
},
"bugs": {
"url": "https://github.com/template-tools/template-sync-action/issues"
},
"homepage": "https://github.com/template-tools/template-sync-action#readme",
"template": {
"properties": {
"javascript": {
"source": "./index.mjs"
}
},
"inheritFrom": [
"arlac77/template-arlac77-github",
"arlac77/template-javascript-component"
]
}
}