-
-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.45 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.45 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
{
"name": "add-and-commit",
"version": "10.0.0",
"private": true,
"type": "module",
"description": "Add & commit files from a path directly from GitHub Actions",
"main": "lib/index.js",
"scripts": {
"prebuild": "npm run clean",
"build": "ncc build src/main.ts --minify --out lib",
"lint": "gts lint",
"prepare": "husky",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest && npm run lint",
"clean": "gts clean",
"fix": "gts fix"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"js-yaml": "^4.1.1",
"simple-git": "^3.18.0",
"string-argv": "^0.3.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "24.12.0",
"@vercel/ncc": "^0.38.4",
"all-contributors-cli": "^6.26.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"gts": "^6.0.2",
"husky": "^9.1.7",
"jest": "^30.3.0",
"ts-jest": "^29.4.6",
"typescript": "~5.9.3"
},
"engines": {
"node": ">=24"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EndBug/add-and-commit.git"
},
"keywords": [
"github",
"action",
"version",
"npm",
"node"
],
"author": "Federico Grandi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/EndBug/add-and-commit/issues"
},
"homepage": "https://github.com/EndBug/add-and-commit#readme"
}