-
-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) 路 823 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) 路 823 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
30
31
32
{
"name": "cron-functions",
"description": "Scheduled Cloud Functions with Cron (Cloud Scheduler) and PubSub triggers",
"version": "1.0.0",
"main": "src/functions.js",
"license": "MIT",
"scripts": {
"lint": "xo",
"build": "",
"serve": "firebase serve --only functions",
"emulator": "yarn firebase emulators:start --only functions",
"shell": "yarn firebase functions:shell",
"start": "yarn run shell",
"deploy": "yarn firebase deploy --only functions",
"logs": "yarn firebase functions:log"
},
"engines": {
"node": "10"
},
"xo": {
"space": true
},
"devDependencies": {
"firebase-functions-test": "^0.1.6",
"firebase-tools": "^6.9.2",
"xo": "^0.24.0"
},
"dependencies": {
"firebase-admin": "^7.3.0",
"firebase-functions": "^2.3.1"
}
}