-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.11 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
{
"name": "sonatype-webhook-handler",
"version": "1.0.0",
"description": "Have notifications in Microsoft Teams & Slack powered by Sonatype Lifecycle",
"homepage": "https://github.com/sonatype-nexus-community/sonatype-webhook-handler",
"bugs": {
"url": "https://github.com/sonatype-nexus-community/sonatype-webhook-handler/issues"
},
"license": "Apache-2.0",
"author": {
"name": "Sonatype Community",
"email": "[email protected]",
"url": "https://github.com/sonatype-nexus-community"
},
"repository": {
"url": "https://github.com/sonatype-nexus-community/sonatype-webhook-handler"
},
"engines": {
"node": "16 || 18"
},
"main": "./lib/index.js",
"scripts": {
"dev": "nodemon -e ts --exec node --inspect=9239 --signal SIGINT -r ts-node/register ./src/index.ts",
"build": "tsc --build",
"start": "node ./lib/src/index.js",
"watch": "nodemon --watch ./src -e ts --exec \"npm run build && npm run start\"",
"test:unit": "jest"
},
"dependencies": {
"@microsoft/adaptivecards-tools": "^1.3.0",
"axios": "^0.26.1",
"dotenv": "^16.3.1",
"express": "^4.18.2"
},
"devDependencies": {
"@jest/globals": "^29.6.4",
"@types/express": "^4.17.17",
"@types/node": "^20.4.0",
"jest": "^29.6.4",
"nodemon": "^2.0.7",
"ts-jest": "^29.1.1",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
]
]
},
"jest": {
"transform": {
"^.+\\.(ts|tsx)?$": [
"ts-jest",
{
"tsconfig": {
"allowJs": true
}
}
]
}
}
}