-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 loc) · 1.02 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
{
"name": "ilp-plugin-http",
"version": "1.6.1",
"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": {
"@types/node": "^10.17.24",
"ilp-packet": "^3.0.9",
"ilp-protocol-ildcp": "^2.1.4",
"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-fetch": "^2.1.4",
"get-port": "^4.1.0",
"ilp-connector": "^23.0.1",
"ilp-protocol-stream": "^1.8.9",
"ts-node": "^8.0.1",
"tslint": "^5.12.1",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.9.3"
}
}