forked from firebase/firebase-admin-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.56 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "firebase-admin",
"version": "5.8.1",
"description": "Firebase admin SDK for Node.js",
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
"license": "Apache-2.0",
"homepage": "https://firebase.google.com/",
"scripts": {
"build": "gulp build",
"lint": "tslint --project tsconfig-lint.json --format stylish",
"test": "run-s lint test:unit",
"integration": "run-s build test:integration",
"test:unit": "mocha test/**/*.spec.ts --compilers ts:ts-node/register",
"test:integration": "node test/integration",
"test:coverage": "nyc npm run test:unit"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src"
],
"exclude": [
"**/*.d.ts",
"**/database.js"
],
"all": true
},
"keywords": [
"admin",
"database",
"Firebase",
"realtime",
"authentication"
],
"repository": {
"type": "git",
"url": "https://github.com/firebase/firebase-admin-node"
},
"main": "lib/index.js",
"files": [
"lib/",
"LICENSE",
"README.md",
"package.json"
],
"types": "./lib/index.d.ts",
"dependencies": {
"@firebase/app": "^0.1.1",
"@firebase/database": "^0.1.3",
"@google-cloud/firestore": "^0.11.1",
"@google-cloud/storage": "^1.2.1",
"@types/google-cloud__storage": "^1.1.1",
"@types/node": "^8.0.53",
"faye-websocket": "0.9.3",
"jsonwebtoken": "8.1.0",
"node-forge": "0.7.1"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/chai-as-promised": "0.0.29",
"@types/firebase-token-generator": "^2.0.28",
"@types/lodash": "^4.14.85",
"@types/mocha": "^2.2.32",
"@types/nock": "^8.0.33",
"@types/request": "2.0.6",
"@types/request-promise": "^4.1.33",
"@types/sinon": "^4.1.2",
"@types/sinon-chai": "^2.7.27",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chalk": "^1.1.3",
"del": "^2.2.1",
"firebase": "~4.6.2",
"firebase-token-generator": "^2.0.0",
"gulp": "^3.9.1",
"gulp-exit": "0.0.2",
"gulp-header": "^1.8.8",
"gulp-istanbul": "^1.1.1",
"gulp-mocha": "^3.0.1",
"gulp-replace": "^0.5.4",
"gulp-tslint": "^6.0.2",
"gulp-typescript": "^3.1.2",
"lodash": "^4.6.1",
"merge2": "^1.0.2",
"mocha": "^3.5.0",
"nock": "^8.0.0",
"npm-run-all": "^4.1.2",
"nyc": "^11.3.0",
"request": "^2.75.0",
"request-promise": "^4.1.1",
"run-sequence": "^1.1.5",
"sinon": "^4.1.3",
"sinon-chai": "^2.8.0",
"ts-node": "^3.3.0",
"tslint": "^3.5.0",
"typescript": "^2.6.1"
}
}