-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "ms-teams-notification-action",
"version": "0.0.0",
"private": true,
"description": "Microsoft Teams notification action",
"main": "lib/main.js",
"scripts": {
"build": "esbuild --bundle --platform=node --target=node20 --outfile=dist/index.js src/index.ts",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metro-digital/ms-teams-notification-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "6.17.0",
"esbuild": "^0.19.11",
"eslint": "^8.56.0",
"eslint-plugin-github": "^4.10.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.3.3"
}
}