-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 984 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 984 Bytes
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
{
"name": "git-commit-pull-push-action",
"version": "1.2.6",
"description": "Runs git add, git commit, git pull and git push",
"main": "index.js",
"type": "module",
"scripts": {
"build": "ncc build index.ts --target es2021 --license licenses.txt",
"compile": "tsc",
"check:compile": "tsc",
"check:lint": "eslint .",
"checks": "run-s check:*"
},
"keywords": [
"github",
"action",
"git",
"add",
"commit",
"pull",
"push"
],
"author": "mgrybyk",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1"
},
"devDependencies": {
"@types/node": "^20.19.10",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"npm-run-all2": "^8.0.4",
"prettier": "^3.6.2",
"typescript": "^5.9.2"
}
}