forked from probot/example-google-cloud-functions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 642 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 642 Bytes
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
{
"name": "@probot/example-google-cloud-function",
"version": "1.0.0",
"private": true,
"description": "Probot & Google Cloud Functions example",
"scripts": {
"start": "probot run ./app.js",
"test": "node test.js"
},
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"license": "ISC",
"repository": "github:probot/example-google-cloud-function",
"dependencies": {
"probot": "^13.0.0"
},
"devDependencies": {
"nock": "^14.0.0-beta.19",
"smee-client": "^1.2.3",
"uvu": "^0.5.6"
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"provenance": true
}
}