-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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": "oauth2-broker",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "babel --extensions \".ts\" src --out-dir lib",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"oauth2"
],
"author": "Sebastian Jørgensen <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@types/bunyan": "^1.8.4",
"@types/http-status": "^0.2.30",
"@types/koa": "^2.0.46",
"@types/koa-bunyan-logger": "^2.0.0",
"@types/koa-router": "^7.0.31",
"@types/node-fetch": "^2.1.2",
"@types/pify": "^3.0.2",
"@types/uuid": "^3.4.4"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"bunyan": "^1.8.12",
"firebase-admin": "^6.0.0",
"http-status": "^1.2.0",
"koa": "^2.5.2",
"koa-bunyan-logger": "^2.0.0",
"koa-router": "^7.4.0",
"node-fetch": "^2.2.0",
"pify": "^4.0.0",
"uuid": "^3.3.2"
}
}