-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
31 lines (31 loc) · 1.02 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
{
"name": "@ebay/firebase-rc-monitor",
"version": "1.0.0",
"description": "Monitors changes to firebase remote config project(s) and posts changes to slack.",
"author": "Jake Hall @ eBay",
"license": "Apache-2.0",
"main": "firebase-retrieve.js",
"repository": "https://github.com/eBay/firebase-rc-monitor",
"scripts": {
"test": "npm run test-unit",
"test-unit": "NODE_ENV=test mocha 'functions/src/test/*.spec.js'",
"lint": "eslint .",
"serve": "firebase serve --only functions",
"shell": "firebase functions:shell",
"start": "npm run shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-plugin-promise": "*",
"firebase-functions-test": "^0.1.7",
"mocha": "^7.0.0",
"sinon": "^8.1.0"
},
"dependencies": {
"firebase-functions": "^3.3.0",
"googleapis": "^107.0.0",
"request": "*"
}
}