forked from firebase/firebase-functions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.15 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
{
"name": "firebase-functions",
"version": "1.0.4",
"description": "Firebase SDK for Cloud Functions",
"main": "lib/index.js",
"scripts": {
"build": "node_modules/.bin/tsc -p tsconfig.release.json",
"build:pack": "rm -rf lib && npm install && node_modules/.bin/tsc -p tsconfig.release.json && npm pack",
"build:release": "npm install --production && npm install typescript firebase-admin && node_modules/.bin/tsc -p tsconfig.release.json",
"lint": "node_modules/.bin/tslint src/{**/*,*}.ts spec/{**/*,*}.ts integration_test/functions/src/{**/*,*}.ts",
"format": "prettier --write '**/*.ts'",
"pretest": "node_modules/.bin/tsc && cp -r spec/fixtures .tmp/spec",
"test": "npm run mocha",
"mocha": "mocha .tmp/spec/index.spec.js",
"posttest": "npm run lint && rm -rf .tmp",
"postinstall": "node ./upgrade-warning"
},
"repository": {
"type": "git",
"url": "git+https://github.com/firebase/firebase-functions.git"
},
"keywords": [
"firebase",
"functions",
"google",
"cloud"
],
"author": "Firebase Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/firebase/firebase-functions/issues"
},
"homepage": "https://github.com/firebase/firebase-functions#readme",
"devDependencies": {
"@types/chai": "^3.4.32",
"@types/chai-as-promised": "0.0.28",
"@types/mocha": "^2.2.31",
"@types/mock-require": "^1.3.3",
"@types/nock": "^0.54.32",
"@types/node": "^6.0.38",
"@types/sinon": "^1.16.29",
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"firebase-admin": "~5.12.1",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"mock-require": "^2.0.1",
"nock": "^9.0.0",
"prettier": "^1.13.7",
"sinon": "^1.17.4",
"typescript": "~2.8.3",
"tslint": "^3.15.1"
},
"peerDependencies": {
"firebase-admin": "~5.12.1"
},
"dependencies": {
"@types/cors": "^2.8.1",
"@types/express": "^4.11.1",
"@types/jsonwebtoken": "^7.2.6",
"@types/lodash": "^4.14.34",
"cors": "^2.8.4",
"express": "^4.16.2",
"jsonwebtoken": "^8.2.1",
"lodash": "^4.6.1"
},
"engines": {
"node": ">=6.0.0"
},
"typings": "lib/index.d.ts"
}