forked from interledgerjs/ilp-plugin-http
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.05 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.05 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
44
{
"name": "ilp-plugin-http",
"version": "1.6.0",
"description": "ILP Plugin over HTTP",
"main": "index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "tslint --project .",
"pretest": "tsc --build",
"prepublishOnly": "npm run lint && npm test",
"test": "node test/test.js"
},
"files": [
"build/**/*.js",
"build/**/*.js.map",
"build/**/*.d.ts",
"index.js"
],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"ilp-packet": "^3.0.8",
"ilp-protocol-ildcp": "^2.0.1",
"jsonwebtoken": "^8.4.0",
"koa": "^2.6.2",
"node-fetch": "^2.3.0",
"raw-body": "^2.3.3"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.3.0",
"@types/koa": "^2.0.48",
"@types/node": "^10.12.18",
"@types/node-fetch": "^2.1.4",
"get-port": "^4.1.0",
"ilp-connector": "^22.2.0",
"ilp-protocol-stream": "^1.8.9",
"ilp-store-memory": "^1.0.0",
"ts-node": "^8.0.1",
"tslint": "^5.12.1",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.2.4"
}
}