-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.18 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
{
"name": "@peapodtech/firebasedeviceflow",
"version": "0.2.0",
"description": "Firebase authentication for Node.js CLI applications on limited input devices via OAuth2 'Device Flow'.",
"main": "dist/FirebaseDeviceFlow.js",
"types": "dist/FirebaseDeviceFlow.d.ts",
"scripts": {
"test": "npm run build && tsc test.ts --esModuleInterop --removeComments --strict && node test.js",
"build": "npm i && tsc --build"
},
"repository": "git://github.com/PeaPodTechnologies/firebasedeviceflow.git",
"keywords": [
"oauth2",
"firebase-auth",
"firebase",
"device-flow",
"cli",
"iot"
],
"author": {
"name": "PeaPod Technologies"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/PeaPodTechnologies/FirebaseDeviceFlow/issues"
},
"homepage": "https://github.com/PeaPodTechnologies/FirebaseDeviceFlow#readme",
"dependencies": {
"@types/inquirer": "^7.3.1",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"firebase": "^9.4.0",
"inquirer": "^7.3.3",
"ora": "^5.2.0",
"typescript": "^4.1.3"
},
"devDependencies": {
"dotenv": "^10.0.0",
"typescript": "^4.1.3"
},
"publishConfig": {
"access": "public"
}
}