forked from firebase/firebase-functions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.48 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "firebase-functions",
"version": "3.6.0",
"description": "Firebase SDK for Cloud Functions",
"keywords": [
"firebase",
"functions",
"google",
"cloud"
],
"homepage": "https://github.com/firebase/firebase-functions#readme",
"bugs": {
"url": "https://github.com/firebase/firebase-functions/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/firebase/firebase-functions.git"
},
"license": "MIT",
"author": "Firebase Team",
"files": [
"lib"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"publishConfig": {
"registry": "https://wombat-dressing-room.appspot.com"
},
"scripts": {
"apidocs": "node docgen/generate-docs.js",
"build:pack": "rm -rf lib && npm install && tsc -p tsconfig.release.json && npm pack",
"build:release": "npm install --production && npm install --no-save typescript firebase-admin && tsc -p tsconfig.release.json",
"build": "tsc -p tsconfig.release.json",
"format": "prettier --check '**/*.{json,md,ts,yml,yaml}'",
"format:fix": "prettier --write '**/*.{json,md,ts,yml,yaml}'",
"lint": "tslint --config tslint.json --project tsconfig.json ",
"lint:fix": "tslint --config tslint.json --fix --project tsconfig.json",
"test": "mocha"
},
"dependencies": {
"@types/express": "^4.17.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.14"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/cors": "^2.8.5",
"@types/jsonwebtoken": "^8.3.2",
"@types/lodash": "^4.14.135",
"@types/mocha": "^5.2.7",
"@types/mock-require": "^2.0.0",
"@types/nock": "^10.0.3",
"@types/node": "^8.10.50",
"@types/sinon": "^7.0.13",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"child-process-promise": "^2.2.1",
"firebase-admin": "^8.2.0",
"istanbul": "^0.4.5",
"js-yaml": "^3.13.1",
"jsdom": "^16.2.1",
"mocha": "^6.1.4",
"mock-require": "^3.0.3",
"mz": "^2.7.0",
"nock": "^10.0.6",
"prettier": "^1.18.2",
"sinon": "^7.3.2",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-no-unused-expression-chai": "^0.1.4",
"tslint-plugin-prettier": "^2.0.1",
"typedoc": "^0.17.1",
"typescript": "^3.5.2",
"yargs": "^15.3.1"
},
"peerDependencies": {
"firebase-admin": "^8.0.0"
},
"engines": {
"node": "^8.13.0 || >=10.10.0"
}
}