-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.38 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
{
"name": "action-git-auth",
"version": "1.0.2",
"description": "GitHub Action to configure git authentication through gitconfig insteadOf rules",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"prepare": "ncc build index.js -o dist/main --source-map --license licenses.txt && ncc build remove.js -o dist/post --source-map",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest --runInBand --coverage --verbose",
"all": "npm run lint && npm run prepare && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-turo/action-git-auth.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/open-turo/action-git-auth/issues"
},
"homepage": "https://github.com/open-turo/action-git-auth/#readme",
"dependencies": {
"@actions/core": "1.11.1",
"@actions/exec": "1.1.1",
"@actions/github": "6.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "7.25.9",
"@eslint/js": "9.16.0",
"@vercel/ncc": "0.38.3",
"eslint": "9.16.0",
"eslint-config-prettier": "9.1.0",
"globals": "15.13.0",
"jest": "29.7.0"
},
"engines": {
"node": ">=20"
},
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"testutil.js"
],
"transform": {}
}
}