-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
85 lines (85 loc) · 2.17 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "ghec-report-reinvite-action",
"version": "3.1.1",
"description": "GitHub Action to reinvite users to GitHub Enterprise Cloud organizations",
"keywords": [],
"author": {
"name": "GitHub Professional Services",
"email": "[email protected]",
"url": "https://services.github.com"
},
"contributors": [
{
"name": "Stefan Stölzle",
"email": "[email protected]",
"url": "https://github.com/stoe"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "ssh://[email protected]/ActionsDesk/ghec-report-reinvite-action.git"
},
"bugs": {
"url": "https://github.com/ActionsDesk/ghec-report-reinvite-action/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"engines": {
"node": ">=20",
"npm": ">=10"
},
"main": "src/index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "npx @vercel/ncc build src/index.js -o dist -q -m -s --license licenses.txt",
"format": "npx prettier --config-precedence prefer-file --write . && eslint -c eslint.config.mjs . --fix",
"prepare": "husky",
"pretest": "npx eslint-config-prettier eslint.config.mjs",
"test": "eslint -c eslint.config.mjs . && jest",
"start": "node src/index.js"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@github/prettier-config": "^0.0.6",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"rimraf": "^6.0.1"
},
"husky": {
"hooks": {
"pre-commit": ".husky/pre-commit",
"pre-push": ".husky/pre-push"
}
},
"jest": {
"passWithNoTests": true,
"testEnvironment": "node",
"testMatch": [
"**/*.t.js"
],
"verbose": false
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run format",
"npm run test"
],
"*.{json,md}": [
"prettier --write"
]
},
"prettier": "@github/prettier-config"
}