-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
91 lines (91 loc) · 2.38 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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@kava-labs/switch-api",
"version": "0.7.0",
"description": "Simple API to stream Interledger payments between BTC, ETH, DAI and XRP",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build",
"!build/__tests__"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"fix": "run-s format lint",
"format": "prettier --write 'src/**/*.{ts,js}' ava.config.js package.json tsconfig.json tslint.json",
"lint": "tslint --project .",
"test": "nyc ava",
"test-inspect": "node --inspect-brk=9231 node_modules/ava/profile.js --serial"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kava-Labs/switch-api.git"
},
"keywords": [
"ilp",
"interledger",
"cross-chain",
"trading",
"streaming",
"micropayments",
"decentralized",
"exchange",
"non-custodial",
"lightning",
"bitcoin",
"ethereum",
"erc20",
"xrp"
],
"author": "Kincaid O'Neil <kincaid@kava.io> (https://kincaidoneil.com/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Kava-Labs/switch-api/issues"
},
"homepage": "https://github.com/Kava-Labs/switch-api#readme",
"dependencies": {
"@kava-labs/crypto-rate-utils": "^4.0.0",
"@kava-labs/ilp-plugin-xrp-paychan": "^0.4.5",
"axios": "^0.19.0",
"bignumber.js": "^7.2.1",
"ethers": "^4.0.28",
"fp-ts": "^1.17.3",
"ilp-packet": "^3.0.8",
"ilp-plugin-ethereum": "^3.0.0-beta.20",
"ilp-plugin-lightning": "^1.0.0-beta.25",
"ilp-protocol-ildcp": "^2.0.1",
"ilp-protocol-stream": "github:interledgerjs/ilp-protocol-stream#3fe1f02273c8ac60927d902c7a88c45111c5699b",
"oer-utils": "^4.0.0",
"ripple-keypairs": "^0.11.0",
"ripple-lib": "^1.2.3",
"rxjs": "^6.5.1"
},
"peerDependencies": {
"bignumber.js": "7.x",
"rxjs": "6.x"
},
"devDependencies": {
"@types/node": "^10.14.4",
"ava": "^1.4.1",
"codecov": "^3.3.0",
"envkey": "^1.2.6",
"husky": "^2.2.0",
"npm-run-all": "^4.1.3",
"nyc": "^14.1.0",
"prettier": "^1.17.0",
"ts-node": "^8.2.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"tslint-eslint-rules": "^5.4.0",
"tslint-immutable": "^5.5.2",
"typescript": "^3.4.5"
},
"husky": {
"hooks": {
"pre-commit": "npm run fix"
}
}
}