-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 954 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
31
32
33
34
35
36
{
"name": "slack-secret-scanning-notifier",
"version": "1.0.0",
"description": "Create Slack messages to notify of secret scanning events",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"clean": "rimraf dist",
"prestart": "npm run clean && npm run build",
"start": "func start",
"test": "jest"
},
"dependencies": {
"@azure/functions": "^4.0.0",
"@probot/adapter-azure-functions": "^1.1.0",
"axios": "^1.7.4",
"node-fetch": "^3.3.2",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^18.x",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"nock": "^13.3.8",
"prettier": "3.1.1",
"probot": "^12.3.3",
"rimraf": "^5.0.0",
"smee-client": "^2.0.1",
"ts-jest": "^29.1.1",
"typescript": "^4.0.0"
},
"main": "dist/src/functions/azureprobot.js"
}