generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
76 lines (76 loc) · 2.25 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
{
"name": "teams-incoming-webhook-action",
"version": "1.13.5",
"description": "GitHub Action to send an MS Teams notification via Incoming Webhook",
"main": "./src/index.ts",
"private": "true",
"type": "module",
"scripts": {
"build": "npm run prepare",
"changelog": "conventional-changelog -i CHANGELOG.md -s && git add CHANGELOG.md",
"check": "tsc --noEmit",
"declarations": "rm -rf ./types && tsc --emitDeclarationOnly --declaration true --declarationDir './types'",
"lint": "npx biome check ./src",
"version": "npm run changelog",
"prebuild": "npm run test",
"postbuild": "npm run typedoc-html",
"prepare": "rm -rf dist && ncc build --source-map --license licenses.txt",
"test": "npm run lint && npm run check",
"typedoc": "typedoc --out ./docs --entryPointStrategy expand ./src --plugin typedoc-plugin-markdown --readme none",
"typedoc-html": "typedoc --out ./docs/publish --entryPointStrategy expand ./src --readme ./README.md"
},
"engines": {
"node": ">= 20.x",
"npm": ">= 9.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikesprague/teams-incoming-webhook-action.git"
},
"keywords": [
"GitHub",
"Actions",
"TypeScript"
],
"author": {
"name": "Michael Sprague",
"email": "mikesprague@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mikesprague/teams-incoming-webhook-action/issues"
},
"homepage": "https://github.com/mikesprague/teams-incoming-webhook-action#readme",
"dependencies": {
"@actions/core": "1.11.1",
"@octokit/rest": "21.1.0",
"axios": "1.7.9",
"dayjs": "1.11.13",
"node-fetch": "3.3.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@vercel/ncc": "0.38.3",
"commitizen": "4.3.1",
"conventional-changelog": "6.0.0",
"conventional-changelog-cli": "5.0.0",
"conventional-changelog-conventionalcommits": "8.0.0",
"cross-env": "7.0.3",
"cz-git": "1.11.0",
"typedoc": "0.27.6",
"typedoc-plugin-markdown": "4.4.1",
"typescript": "5.7.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"release": {
"preset": "conventionalcommits"
},
"volta": {
"node": "21.6.2",
"npm": "10.5.0"
}
}