forked from firebase/firebase-functions-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.66 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
{
"name": "firebase-functions-test",
"version": "0.1.6",
"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 install --production && npm install 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"
},
"repository": {
"type": "git",
"url": "git+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"
},
"homepage": "https://github.com/firebase/firebase-functions-test#readme",
"dependencies": {
"@types/lodash": "^4.14.104",
"lodash": "^4.17.5"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^5.0.0",
"chai": "^4.1.2",
"firebase-admin": "~6.1.0",
"firebase-functions": "^2.1.0",
"mocha": "^5.0.5",
"sinon": "^4.4.9",
"tslint": "^5.8.0",
"typescript": "^2.4.1"
},
"peerDependencies": {
"firebase-functions": ">1.0.1",
"firebase-admin": ">5.12.0"
},
"engines": {
"node": ">=6.0.0"
},
"typings": "lib/index.d.ts"
}