-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
39 lines (39 loc) · 1003 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
37
38
39
{
"name": "@probot/adapter-azure-functions",
"publishConfig": {
"access": "public"
},
"version": "0.0.0-development",
"description": "Adapter to run a Probot application function in Azure Functions",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"lint": "prettier --check '*.{js,md,json}' 'test/**/*.{js,json}' '.github/**/*.yml'",
"lint:fix": "prettier --write '*.{js,md,json}' 'test/**/*.{js,json}' '.github/**/*.yml'"
},
"keywords": [
"probot",
"probot-adapter",
"azure"
],
"author": "Gregor Martynus (https://github.com/gr2m)",
"license": "ISC",
"repository": "github:probot/adapter-azure-functions",
"types": "index.d.ts",
"devDependencies": {
"@azure/functions": "^4.0.0",
"@types/jest": "^29.0.0",
"jest": "^29.0.2",
"nock": "^14.0.0-beta.6",
"prettier": "^3.2.5",
"typescript": "^5.2.2"
},
"dependencies": {
"probot": "^13.0.2"
},
"release": {
"branches": [
"main"
]
}
}