-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
75 lines (75 loc) · 1.95 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
{
"name": "ilp-plugin-ethereum",
"version": "3.0.0-beta.20",
"description": "Settle Interledger payments with ether and ERC-20 tokens",
"main": "index.js",
"types": "build/index.d.ts",
"files": [
"build",
"!build/__tests__"
],
"scripts": {
"build": "tsc",
"lint": "tslint --project .",
"test": "nyc ava",
"test-inspect": "node --inspect-brk node_modules/ava/profile.js",
"format": "prettier --write 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/interledgerjs/ilp-plugin-ethereum.git"
},
"keywords": [
"ilp",
"interledger",
"ledger",
"plugin",
"ethereum",
"machinomy",
"erc20"
],
"contributors": [
"Kincaid O'Neil <[email protected]> (https://kincaidoneil.com/)",
"Kevin Davis <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/interledgerjs/ilp-plugin-ethereum/issues"
},
"homepage": "https://github.com/interledgerjs/ilp-plugin-ethereum#readme",
"dependencies": {
"@kava-labs/crypto-rate-utils": "^2.0.2",
"@types/node": "^11.13.5",
"@types/webassembly-js-api": "0.0.2",
"bignumber.js": "^7.2.1",
"bitcoin-ts": "^1.4.0",
"btp-packet": "^2.2.0",
"ethers": "^4.0.27",
"eventemitter2": "^5.0.1",
"ilp-logger": "^1.1.3",
"ilp-packet": "^3.0.8",
"ilp-plugin-btp": "^1.3.10",
"ilp-plugin-mini-accounts": "^4.0.2",
"openzeppelin-solidity": "^2.2.0"
},
"devDependencies": {
"@types/ganache-core": "^2.1.2",
"@types/get-port": "^4.2.0",
"ava": "^1.4.1",
"codecov": "^3.3.0",
"ganache-core": "^2.5.5",
"get-port": "^5.0.0",
"nyc": "^14.0.0",
"prettier": "^1.17.0",
"standard": "^12.0.1",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.4.4"
},
"engines": {
"node": ">=10.0.0"
}
}