-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.86 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
{
"name": "release-with-commit",
"version": "3.0.0",
"private": true,
"description": "Release with commit",
"author": "ChanTsune <[email protected]>",
"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": "^1.11.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@types/jest": "^27.5.0",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.18.1",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^27.5.1",
"nock": "13.5.6",
"prettier": "3.4.2",
"standard": "^17.1.2",
"ts-jest": "^27.1.4",
"typescript": "^4.9.5"
},
"engines": {
"node": ">= 20.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"
]
}
}