forked from ryancyq/github-signed-commit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.96 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.96 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
{
"type": "module",
"name": "@ryancyq/github-signed-commit",
"version": "1.4.1",
"description": "Create a signed commit with GitHub Actions",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ryancyq/github-signed-commit.git"
},
"keywords": [],
"author": "Ryan Chang <ryancyq@gmail.com> (https://github.com/ryancyq)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryancyq/github-signed-commit/issues"
},
"scripts": {
"start": "node dist/index.js",
"bundle": "npm run format:write && npm run build",
"build": "ncc build src/index.ts -o dist",
"lint": "npx eslint 'src/**/*.ts'",
"format:write": "npx prettier --write .",
"format:check": "npx prettier --check .",
"test": "npx jest",
"ci-test": "npx jest --runInBand"
},
"homepage": "https://github.com/ryancyq/github-signed-commit#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.0",
"@actions/github": "^6.0.0",
"@octokit/graphql-schema": "^15.25.0",
"@types/node": "^22.13.10"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.7",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^8.27.0",
"@vercel/ncc": "^0.38.2",
"eslint": "^9.22.0",
"eslint-config-prettier": "^9.1.0",
"fetch-mock": "^12.2.1",
"jest": "^29.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.8.2",
"typescript-eslint": "^8.27.0"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist"
],
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testTimeout": 5000,
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"src/**/*.ts"
],
"verbose": true
}
}