-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.06 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.06 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
{
"author": "Rudigo",
"name": "firebaseauth",
"version": "1.0.0",
"description": "Firebase authentication library - a node js wrapper around the Firebase REST API. It can generate Firebase auth token based on given email-password combination or OAuth token (issued by Google, Facebook, Twitter or Github). This Firebase token can then be used with REST queries against Firebase Database endpoints or for protecting resources on a server.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc"
},
"repository": {
"url": "https://github.com/ThisIsRudigo/firebaseauth.git"
},
"license": "ISC",
"dependencies": {
"express": "^4.16.3",
"firebase-admin": "^5.2.1",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"typescript": "^2.7.2",
"validator": "^8.2.0"
},
"devDependencies": {
"@types/express": "^4.11.1",
"@types/node": "^9.6.0",
"@types/request-promise": "^4.1.41",
"@types/validator": "^9.4.1",
"ts-node": "^5.0.0",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
}
}