forked from freenet-actions/ms-teams-deploy-card
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 790 Bytes
/
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
{
"name": "ms-teams-deploy-card",
"version": "2.0",
"description": "Microsoft Teams Deploy Card",
"main": "index.ts",
"repository": "https://github.com/toko-bifrost/ms-teams-deploy-card",
"author": "Aldwyn Cabarrubias",
"license": "MIT",
"private": false,
"dependencies": {
"@actions/core": "^1.10.1",
"@octokit/rest": "^19.0.13",
"@octokit/types": "^11.1.0",
"moment-timezone": "^0.5.43",
"node-fetch": "^3.3.2",
"yaml": "^2.3.2"
},
"devDependencies": {
"@types/moment-timezone": "^0.5.13",
"@types/node-fetch": "^2.6.6",
"@vercel/ncc": "^0.38.0",
"typescript": "^5.2.2"
},
"scripts": {
"ncc": "ncc build src/index.ts -m -o dist/main && ncc build src/post.ts -m -o dist/post"
},
"engines": {
"node": "16"
}
}