-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.19 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.19 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
{
"name": "commit-action",
"version": "0.1.5",
"description": "Commit changes via GitHub API (signed commits, bypasses rulesets)",
"main": "dist/commit.js",
"scripts": {
"build": "tsc",
"bundle": "ncc build src/commit-runner.ts -o dist",
"test": "jest",
"test:unit": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"commit": "tsx src/commit-runner.ts",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"keywords": [
"github",
"actions",
"commit",
"git",
"api"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.1"
},
"overrides": {
"@actions/http-client": "3.0.2",
"undici": "6.23.0",
"minimatch@^3.0.0": "3.1.4",
"minimatch@^9.0.0": "9.0.7"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"@vercel/ncc": "^0.38.4",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"tsx": "^4.7.0",
"typescript": "^5.3.2"
}
}