forked from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
83 lines (83 loc) · 2.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
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
{
"name": "@skitionek/notify-microsoft-teams",
"version": "v1.0.0",
"description": "Microsoft Teams Notification for Github Actions",
"main": "dist/index.js",
"publishConfig": {
"registry": "https://npm.pkg.github.com/skitionek"
},
"scripts": {
"package": "ncc build src -o dist",
"lint": "eslint src/index.js",
"test": "npm run lint && jest",
"prepare": "npm run snyk-protect",
"snyk-protect": "snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Skitionek/notify-microsoft-teams.git"
},
"husky": {
"hooks": {
"pre-commit": "npm run package && git add dist/index.js"
}
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"author": "GitHub",
"license": "MIT",
"bugs": {
"url": "https://github.com/Skitionek/notify-microsoft-teams/issues"
},
"homepage": "https://github.com/Skitionek/notify-microsoft-teams#readme",
"dependencies": {
"@actions/core": "^1.9.1",
"@octokit/rest": "^17.11.2",
"botbuilder": "^4.19.0",
"lodash.merge": "^4.6.2",
"ms-teams-webhook": "^1.0.4",
"@snyk/protect": "latest"
},
"devDependencies": {
"@actions/github": "^2.1.1",
"@babel/cli": "^7.20.7",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@zeit/ncc": "^0.20.5",
"eslint": "^6.3.0",
"husky": "^4.3.8",
"jest": "^29.4.1"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"@semantic-release/changelog",
"@semantic-release/git"
],
"branch": "master"
},
"babel": {
"plugins": [
"@babel/plugin-proposal-class-properties"
],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "16"
}
}
]
]
},
"snyk": true
}