-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
68 lines (68 loc) · 2.28 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "firebase-functions-test",
"version": "3.3.0",
"description": "A testing companion to firebase-functions.",
"main": "lib/index.js",
"scripts": {
"build": "npm i && node_modules/.bin/tsc -p tsconfig.release.json",
"build:pack": "npm prune --production && rm -rf lib && npm install && node_modules/.bin/tsc -p tsconfig.release.json && npm pack && npm install",
"build:release": "npm ci --production && npm install --no-save typescript firebase-functions firebase-admin && node_modules/.bin/tsc -p tsconfig.release.json",
"lint": "node_modules/.bin/tslint src/{**/*,*}.ts spec/{**/*,*}.ts",
"pretest": "node_modules/.bin/tsc",
"test": "mocha .tmp/spec/index.spec.js",
"posttest": "npm run lint && rm -rf .tmp",
"preintegrationTest": "node_modules/.bin/tsc",
"integrationTest": "firebase emulators:exec --project=not-a-project --only firestore 'mocha .tmp/spec/integration/**/*.spec.js'",
"postintegrationTest": "rm -rf .tmp",
"format": "prettier --check '**/*.{json,ts,yml,yaml}'",
"format:fix": "prettier --write '**/*.{json,ts,yml,yaml}'"
},
"repository": {
"type": "git",
"url": "https://github.com/firebase/firebase-functions-test.git"
},
"keywords": [
"firebase",
"functions",
"google",
"cloud",
"test"
],
"author": "Firebase Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/firebase/firebase-functions-test/issues"
},
"publishConfig": {
"registry": "https://wombat-dressing-room.appspot.com"
},
"homepage": "https://github.com/firebase/firebase-functions-test#readme",
"dependencies": {
"@types/lodash": "^4.14.104",
"lodash": "^4.17.5",
"ts-deepmerge": "^2.0.1"
},
"devDependencies": {
"@types/chai": "~4.2.4",
"@types/express": "4.17.8",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"firebase-admin": "^12.0.0",
"firebase-functions": "^4.9.0",
"firebase-tools": "^8.9.2",
"mocha": "^6.2.2",
"prettier": "^1.19.1",
"sinon": "^7.5.0",
"tslint": "^5.20.0",
"typescript": "^4.2.5"
},
"peerDependencies": {
"firebase-admin": "^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0",
"firebase-functions": ">=4.9.0",
"jest": ">=28.0.0"
},
"engines": {
"node": ">=14.0.0"
},
"typings": "lib/index.d.ts"
}