-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.1 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": "@coil/receipt-verifier",
"version": "1.0.5",
"repository": {
"type": "git",
"url": "https://github.com/coilhq/receipt-verifier.git"
},
"description": "Manages Interledger STREAM receipts",
"main": "dist/src/index.js",
"bin": {
"receipt-verifier": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"test": "jest --runInBand"
},
"author": "Brandon Wilson <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@koa/cors": "^2.2.3",
"ilp-protocol-stream": "^2.6.4",
"ioredis": "^4.14.1",
"koa": "^2.11.0",
"koa-better-http-proxy": "^0.2.5",
"koa-router": "^8.0.7",
"long": "^4.0.0",
"node-fetch": "^2.6.0",
"raw-body": "^2.4.1",
"reduct": "^3.3.1"
},
"devDependencies": {
"@types/ioredis": "^4.14.7",
"@types/jest": "^26.0.20",
"@types/koa": "^2.11.1",
"@types/koa__cors": "^3.0.1",
"@types/koa-router": "^7.4.0",
"@types/node": "^13.7.1",
"@types/node-fetch": "^2.5.5",
"jest": "^26.6.3",
"ts-jest": "^26.5.2",
"typescript": "^3.7.5"
}
}