This repository has been archived by the owner on Aug 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.66 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
58
59
60
61
62
{
"name": "tpp-reverse-proxy",
"version": "0.0.3",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && mkdir dist && babel src -s -D -d dist",
"start": "npm run build && npm run serve",
"serve": "node dist/index.js",
"watch": "nodemon -w src --exec \"babel src -s -D -d dist",
"test": "node test/testscript.js",
"ci": "server-test 'npm start publicKey=cert privateKey=key host=${HOST}' 8731 test"
},
"repository": {
"type": "git",
"url": "https://github.com/evryfs/psd2-developer.git"
},
"author": {
"name": "Rune Vikestad"
},
"license": "Apache-2.0",
"keywords": [
"signature",
"http message signing",
"x.509",
"reverse proxy"
],
"devDependencies": {
"@babel/cli": "^7.0.0-beta.54",
"@babel/core": "^7.0.0-beta.54",
"@babel/polyfill": "^7.0.0-beta.54",
"@babel/preset-env": "^7.0.0-beta.54",
"@babel/preset-stage-3": "^7.0.0-beta.54",
"babel-eslint": "^10.0.3",
"eslint": "^7.5.0",
"eslint-plugin-import": "^2.13.0",
"nodemon": "^2.0.0",
"start-server-and-test": "^1.10.6",
"rimraf": "^3.0.0",
"shelljs": "^0.8.2"
},
"dependencies": {
"bunyan": "^1.8.12",
"jsprim": "^2.0.0",
"koa": "^2.5.2",
"koa-body": "^4.0.4",
"koa-bodyparser": "^4.2.1",
"koa-bunyan-logger": "^2.0.0",
"koa-compose": "^4.1.0",
"koa-compress": "^5.0.1",
"koa-convert": "^2.0.0",
"koa-cors": "0.0.16",
"koa-proxy": "^0.9.0",
"koa-router": "^9.1.0",
"lodash": "^4.17.10",
"pem": "^1.12.5",
"request": "^2.88.0",
"rotating-file-stream": "^2.0.0",
"uuid": "^8.3.0"
}
}