forked from azlekov/parse-server-firebase
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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
{
"name": "parse-server-firebase-auth",
"version": "2.0.0",
"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": "20.11.30",
"@types/parse": "3.0.9",
"@typescript-eslint/eslint-plugin": "7.3.1",
"@typescript-eslint/parser": "7.3.1",
"eslint": "8.57.0",
"parse": "4.3.1",
"typescript": "5.1.6"
},
"engines": {
"node": ">=16"
},
"files": [
"lib"
],
"dependencies": {
"firebase-admin": "12.0.0"
}
}