-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.56 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.56 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "github-action-app-user",
"version": "1.0.81",
"private": true,
"description": "Get a GitHub App's email and username, from a GitHub Action",
"homepage": "https://github.com/vidavidorra/github-action-app-user#readme",
"bugs": {
"url": "https://github.com/vidavidorra/github-action-app-user/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vidavidorra/github-action-app-user.git"
},
"license": "GPL-3.0-or-later",
"author": "Jeroen de Bruijn",
"type": "module",
"exports": "./dist/index.js",
"files": [
"./dist/**/!(*.test).{js,d.ts,cjs}"
],
"scripts": {
"build": "tsc",
"bundle": "esbuild src/index.ts --bundle --platform=node --sourcemap --format=esm --outdir=dist --banner:js=\"import { createRequire } from 'module';const require = createRequire(import.meta.url);\"",
"format": "prettier --ignore-path .gitignore --write \"**/*.{vue,css,less,scss,html,htm,json,md,markdown,yml,yaml}\" --log-level warn",
"format:check": "prettier --ignore-path .gitignore --check \"**/*.{vue,css,less,scss,html,htm,json,md,markdown,yml,yaml}\" --log-level warn",
"lint": "npm run format:check && eslint",
"lint:fix": "npm run format && eslint --fix",
"prepare": "husky .github/husky",
"test": "c8 ava"
},
"commitlint": {
"extends": [
"@vidavidorra"
]
},
"prettier": "@vidavidorra/prettier-config",
"release": {
"extends": "@vidavidorra/semantic-release-config"
},
"ava": {
"files": [
"!worktrees",
"src/**/*.test.ts"
],
"typescript": {
"rewritePaths": {
"src/": "dist/"
},
"compile": "tsc"
}
},
"c8": {
"all": true,
"include": [
"dist/**/*.js"
],
"reporter": [
"cobertura",
"html",
"lcovonly",
"text-summary"
]
},
"dependencies": {
"@actions/core": "3.0.1",
"@actions/github": "9.1.1",
"zod": "4.4.1"
},
"devDependencies": {
"@ava/typescript": "7.0.0",
"@commitlint/cli": "20.5.3",
"@octokit/types": "16.0.0",
"@types/sinon": "21.0.1",
"@vidavidorra/commitlint-config": "7.1.19",
"@vidavidorra/eslint-config": "1.0.4",
"@vidavidorra/prettier-config": "1.0.7",
"@vidavidorra/semantic-release-config": "2.0.1",
"ava": "8.0.0",
"c8": "11.0.0",
"esbuild": "0.28.0",
"eslint": "9.39.4",
"esmock": "2.7.3",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"prettier": "3.8.3",
"semantic-release": "25.0.3",
"sinon": "21.1.2",
"typescript": "6.0.3"
},
"engines": {
"node": ">=20"
}
}