-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.64 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
59
60
{
"name": "pagerduty-send-event",
"description": "A GitHub Action for sending events to PagerDuty to trigger, acknowledge, or resolve incidents.",
"version": "1.3.1",
"author": "acyphus",
"private": true,
"homepage": "https://github.com/ACyphus/pagerduty-send-event",
"repository": {
"type": "git",
"url": "git+https://github.com/ACyphus/pagerduty-send-event.git"
},
"bugs": {
"url": "https://github.com/ACyphus/pagerduty-send-event/issues"
},
"keywords": [
"PagerDuty",
"Actions",
"Alert",
"Event",
"Incident",
"Trigger",
"Acknowledge",
"Resolve"
],
"exports": {
".": "./dist/index.js"
},
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"bundle": "npm run format:write && npm run package",
"ci-test": "npx vitest run --coverage",
"format:write": "npx prettier --write .",
"format:check": "npx prettier --check .",
"lint": "npx eslint .",
"package": "rm -rf dist && npx ncc build src/index.js -o dist --source-map --license licenses.txt",
"package:watch": "npm run package -- --watch",
"test": "npx vitest run --coverage",
"all": "npm run format:write && npm run lint && npm run test && npm run package",
"prepare": "husky"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.1",
"superagent": "^10.3.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@vercel/ncc": "^0.44.1",
"@vitest/coverage-v8": "^4.1.10",
"@vitest/eslint-plugin": "^1.6.24",
"eslint": "^10.8.0",
"eslint-plugin-prettier": "^5.5.6",
"husky": "^9.1.7",
"prettier": "^3.9.6",
"vitest": "^4.1.5"
}
}