-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 821 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 821 Bytes
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
{
"name": "firebase-users-admin",
"version": "1.0.0",
"description": "API for Firebase Authentication users management using the firebase-admin SDK.",
"main": "index.js",
"engines": {
"node": "14.x"
},
"scripts": {
"install": "cd server && npm install",
"postinstall": "cd server && npm run seed",
"build": "cd server && npm run build",
"start": "cd server && npm start",
"heroku-prebuild": "cd server && npm i apidoc -P",
"heroku-postbuild": "cd server && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ciatph/firebase-users-admin.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ciatph/firebase-users-admin/issues"
},
"homepage": "https://github.com/ciatph/firebase-users-admin#readme"
}