-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.27 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.27 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
33
34
35
36
37
38
39
40
41
42
43
{
"name": "oauth2-firebase",
"version": "0.1.16",
"description": "This library provides OAuth2 server implementation for Firebase",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "tslint -p .",
"clean": "rm -rf dist",
"clean:pack": "rm -f *.tgz",
"build": "tsc",
"build:watch": "tsc -w",
"build:clean": "yarn clean:pack && yarn clean && yarn build",
"package": "yarn build:clean && yarn pack",
"release": "yarn build:clean && yarn publish"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/yoichiro/oauth2-firebase.git"
},
"author": "Yoichiro Tanaka <yoichiro6642@gmail.com> (https://github.com/yoichiro)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/yoichiro/oauth2-firebase/issues",
"email": "yoichiro6642@gmail.com"
},
"homepage": "https://github.com/yoichiro/oauth2-firebase.git",
"dependencies": {
"ejs": "^2.6.1",
"express": "^4.16.3",
"firebase-admin": "~5.13.1",
"firebase-functions": "^2.0.0",
"oauth2-nodejs": "^0.2.0",
"secure-random-string": "^1.1.0"
},
"devDependencies": {
"@types/ejs": "^2.6.0",
"@types/express": "^4.16.0",
"@types/node": "^10.5.2",
"tslint": "^5.8.0",
"typescript": "^2.5.3"
}
}