-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "simple-payment-channel",
"author": "Eric Olszewski <[email protected]>",
"version": "1.0.0",
"description": "A simple one-way payment channel for conducting off-chain payment with on-chain settlement.",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "truffle migrate --reset && truffle test",
"coverage": "./node_modules/.bin/solidity-coverage"
},
"dependencies": {
"bn.js": "^4.11.8",
"dotenv": "^6.0.0",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-util": "^5.2.0",
"truffle-contract": "^3.0.6",
"zeppelin-solidity": "^1.11.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"solidity-coverage": "^0.5.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eolszewski/simple-payment-channel.git"
},
"keywords": [
"Payment",
"Channels",
"State",
"Channels",
"Ethereum",
"Blockchain"
],
"bugs": {
"url": "https://github.com/eolszewski/simple-payment-channel/issues"
},
"homepage": "https://github.com/eolszewski/simple-payment-channel#readme"
}