-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
40 lines (40 loc) · 1.27 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
32
33
34
35
36
37
38
39
40
{
"name": "firestore-messagebird-send-msg",
"main": "functions/lib/index.js",
"version": "0.2.0",
"description": "Repository of MessageBird Firebase Extension to send Omnichannel messages.",
"private": true,
"scripts": {
"format": "prettier --write \"**/*.{js,md,yml,ts,json,yaml}\"",
"lint": "prettier --list-different \"**/*.{js,md,yml,ts,json,yaml}\"",
"build": "npm run clean && npm run compile",
"clean": "rimraf functions/lib",
"compile": "tsc",
"test": "jest",
"test-watch": "jest --watch",
"test-coverage": "jest --coverage",
"generate-readme": "firebase ext:info . --markdown > README.md"
},
"repository": "https://github.com/messagebird/firestore-send-msg",
"author": "MessageBird (https://messagebird.com/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/messagebird/firestore-send-msg/issues"
},
"dependencies": {
"@types/node": "^14.14.34",
"firebase-admin": "9.12.0",
"firebase-functions": "^3.15.7",
"messagebird": "^3.7.1"
},
"devDependencies": {
"@firebase/testing": "0.20.11",
"@types/jest": "^27.0.2",
"firebase-functions-test": "^0.3.3",
"jest": "^27.2.4",
"prettier": "2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
}
}