-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.19 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
{
"name": "@invertase/firebase-extension-utilities",
"author": "Jacob Cable",
"version": "0.1.2",
"description": "Helper classes for building Firebase Extensions",
"scope": "invertase",
"main": "lib/index.js",
"scripts": {
"prepare": "npm run build",
"build": "npm run clean && npm run compile",
"build:watch": "tsc --watch",
"clean": "rimraf lib",
"compile": "tsc",
"test": "jest --coverage --runInBand",
"format": "prettier --write \"**/*.{js,md,yml,ts,json,yaml}\"",
"pack-into-test-extension": "npm run build && rimraf test-extension/functions/invertase-firebase-extension-utilities-*.tgz && npm pack --pack-destination test-extension/functions && cd test-extension/functions && npm install invertase-firebase-extension-utilities-*.tgz"
},
"keywords": [],
"license": "Apache-2.0",
"dependencies": {
"firebase-functions": "^4.7.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node-fetch": "^2.6.11",
"firebase-functions-test": "^3.1.1",
"jest": "^29.7.0",
"node-fetch": "^2.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"wait-for-expect": "^3.0.2"
}
}