forked from firebase/firebase-admin-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.33 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "firebase-admin",
"version": "9.4.2",
"description": "Firebase admin SDK for Node.js",
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
"license": "Apache-2.0",
"homepage": "https://firebase.google.com/",
"engines": {
"node": ">=10.10.0"
},
"scripts": {
"build": "gulp build",
"build:tests": "gulp compile_test",
"prepare": "npm run build",
"lint": "run-p lint:src lint:test",
"test": "run-s lint test:unit",
"integration": "run-s build test:integration",
"test:unit": "mocha test/unit/*.spec.ts --require ts-node/register",
"test:integration": "mocha test/integration/*.ts --slow 5000 --timeout 20000 --require ts-node/register",
"test:coverage": "nyc npm run test:unit",
"lint:src": "eslint src/ --ext .ts",
"lint:test": "eslint test/ --ext .ts",
"apidocs": "node docgen/generate-docs.js --api node",
"api-extractor": "api-extractor run",
"api-extractor:local": "api-extractor run --local"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src"
],
"exclude": [
"**/*.d.ts"
],
"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/database": "^0.8.1",
"@firebase/database-types": "^0.6.1",
"@types/node": "^10.10.0",
"dicer": "^0.3.0",
"jsonwebtoken": "^8.5.1",
"node-forge": "^0.10.0"
},
"optionalDependencies": {
"@google-cloud/firestore": "^4.5.0",
"@google-cloud/storage": "^5.3.0"
},
"devDependencies": {
"@firebase/app": "^0.6.13",
"@firebase/auth": "^0.15.2",
"@firebase/auth-types": "^0.10.1",
"@microsoft/api-extractor": "^7.11.2",
"@types/bcrypt": "^2.0.0",
"@types/chai": "^4.0.0",
"@types/chai-as-promised": "^7.1.0",
"@types/firebase-token-generator": "^2.0.28",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.104",
"@types/minimist": "^1.2.0",
"@types/mocha": "^2.2.48",
"@types/nock": "^9.1.0",
"@types/request": "^2.47.0",
"@types/request-promise": "^4.1.41",
"@types/sinon": "^9.0.0",
"@types/sinon-chai": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"bcrypt": "^5.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.0.0",
"chalk": "^1.1.3",
"child-process-promise": "^2.2.1",
"del": "^2.2.1",
"eslint": "^6.8.0",
"firebase-token-generator": "^2.0.0",
"gulp": "^4.0.2",
"gulp-filter": "^6.0.0",
"gulp-header": "^1.8.8",
"gulp-replace": "^0.5.4",
"gulp-typescript": "^5.0.1",
"http-message-parser": "^0.0.34",
"jsdom": "^15.0.0",
"lodash": "^4.17.15",
"minimist": "^1.2.0",
"mocha": "^8.0.0",
"mz": "^2.7.0",
"nock": "^13.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.0",
"request": "^2.75.0",
"request-promise": "^4.1.1",
"run-sequence": "^1.1.5",
"sinon": "^9.0.0",
"sinon-chai": "^3.0.0",
"ts-node": "^9.0.0",
"typedoc": "^0.19.2",
"typescript": "^3.7.3",
"yargs": "^16.0.0"
}
}