-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.25 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "firebase-auth-provider",
"version": "2.2.1",
"description": "A simple express middleware and provider for Firebase Auth",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"author": "Freshfox OG",
"license": "MIT",
"private": false,
"keywords": [
"firebase",
"typescript",
"auth",
"express"
],
"directories": {
"test": "test",
"lib": "src"
},
"files": [
"dist/",
"src/",
"test/",
".editorconfig",
"tsconfig.json",
"README.md"
],
"scripts": {
"test": "NODE_ENV=test mocha dist/test",
"build": "tsc",
"preversion": "git pull && yarn build && yarn test",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "[email protected]:freshfox/firebase-auth-provider.git"
},
"dependencies": {
"inversify": "^5.0.1",
"reflect-metadata": "^0.1.13",
"uuid": "^8.1.0"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"express": "^4.17.1",
"firebase-admin": "^8.8.0",
"mocha": "^6.2.2",
"node-env-file": "^0.1.8",
"should": "^13.2.3",
"ts-node": "^8.5.0",
"typescript": "^3.7.2"
},
"peerDependencies": {
"firebase-admin": "^8.8.0",
"express": "^4.17.1"
}
}