forked from azlekov/parse-server-firebase
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.12 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.12 KB
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
{
"name": "parse-server-firebase-auth",
"version": "3.0.1",
"description": "Firebase auth adapter, extensions and utilities for Parse Server",
"repository": {
"type": "git",
"url": "https://github.com/nopol10/parse-server-firebase"
},
"main": "lib/main/index.js",
"typings": "lib/main/index.d.ts",
"module": "lib/module/index.js",
"scripts": {
"lint": "yarn eslint . --ext .ts",
"build": "tsc -p tsconfig.json && tsc -p tsconfig.module.json"
},
"homepage": "https://github.com/nopol10/parse-server-firebase",
"bugs": "https://github.com/nopol10/parse-server-firebase/issues",
"keywords": [
"parse",
"parse-server",
"parse-cloud",
"firebase",
"fireabse-auth"
],
"author": "Asen Lekov",
"license": "MIT",
"devDependencies": {
"@types/node": "25.3.5",
"@types/parse": "3.0.9",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.1",
"parse": "8.5.0",
"typescript": "5.9.3"
},
"engines": {
"node": ">=20"
},
"files": [
"lib"
],
"dependencies": {
"firebase-admin": "13.7.0"
}
}