-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
80 lines (80 loc) · 2.23 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "ilp-plugin-lightning",
"version": "1.0.0-beta.25",
"description": "Settle interledger payments using the Lightning Network",
"main": "index.js",
"types": "build/index.d.ts",
"files": [
"build/**/*",
"generated/**/*",
"!build/__tests__"
],
"scripts": {
"build": "tsc",
"prepare": "run-s generate:*",
"generate:dir": "make-dir generated",
"generate:js": "pbjs -t static-module -w commonjs -o generated/rpc.js src/proto/rpc.proto",
"generate:ts": "pbts -o generated/rpc.d.ts generated/rpc.js",
"generate:fix": "node generate.js",
"test": "nyc ava",
"test-inspect": "node --inspect-brk node_modules/ava/profile.js",
"lint": "tslint --fix --project .",
"fix": "run-s format lint",
"format": "prettier --write 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/interledgerjs/ilp-plugin-lightning.git"
},
"bugs": {
"url": "https://github.com/interledgerjs/ilp-plugin-lightning/issues"
},
"keywords": [
"interledger",
"ilp",
"streaming",
"payments",
"lightning",
"lightning-network",
"micropayments"
],
"contributors": [
"Kevin Davis <[email protected]>",
"Austin King <[email protected]>",
"Kincaid O'Neil <[email protected]> (https://kincaidoneil.com/)"
],
"license": "Apache-2.0",
"dependencies": {
"@grpc/grpc-js": "^0.3.6",
"bignumber.js": "^7.2.1",
"btp-packet": "^2.2.0",
"debug": "^4.1.1",
"eventemitter2": "^5.0.1",
"ilp-logger": "^1.0.2",
"ilp-packet": "^3.0.7",
"ilp-plugin-btp": "^1.3.10",
"ilp-plugin-mini-accounts": "^4.0.2",
"protobufjs": "github:trackforce/protobuf.js#86f968acd6b9b1489059f08e48c9469ba8d4fba1",
"rxjs": "^6.4.0"
},
"devDependencies": {
"@types/debug": "^4.1.3",
"@types/get-port": "^4.2.0",
"@types/node": "^10.12.18",
"ava": "^1.4.1",
"get-port": "^4.2.0",
"make-dir-cli": "^2.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^13.3.0",
"prettier": "^1.16.4",
"ts-node": "^8.0.3",
"tslint": "^5.14.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.4.1"
},
"engines": {
"node": ">=10.0.0"
}
}