-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.89 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.89 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
{
"name": "release-with-commit",
"version": "4.0.0",
"private": true,
"description": "Release with commit",
"author": "ChanTsune <yshegou@gmail.com>",
"license": "MIT",
"repository": "https://github.com/ChanTsune/release-with-commit.git",
"homepage": "https://github.com/ChanTsune/release-with-commit",
"bugs": "https://github.com/ChanTsune/release-with-commit/issues",
"keywords": [
"github",
"release"
],
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/github": "^9.1.1"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.26.1",
"@vercel/ncc": "^0.38.4",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.15.1",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.3.0",
"jest-util": "^30.3.0",
"nock": "14.0.13",
"prettier": "3.8.3",
"standard": "^17.1.2",
"ts-jest": "^29.4.9",
"typescript": "^5.9.3"
},
"engines": {
"node": ">= 24.0.0"
},
"standard": {
"parser": "@typescript-eslint/parser",
"env": [
"jest"
],
"plugins": [
"typescript"
]
},
"jest": {
"testEnvironment": "node",
"roots": [
"<rootDir>/src/",
"<rootDir>/test/"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.[tj]sx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}