-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "git-commit-pull-push-action",
"version": "1.2.5",
"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",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"check:compile": "tsc",
"check:lint": "eslint --ext .ts --ignore-path .gitignore .",
"checks": "run-s check:*"
},
"keywords": [
"github",
"action",
"git",
"add",
"commit",
"pull",
"push"
],
"author": "mgrybyk",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1"
},
"devDependencies": {
"@types/node": "^20.12.8",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
}
}