-
Notifications
You must be signed in to change notification settings - Fork 110
/
package.json
39 lines (39 loc) · 1 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
{
"name": "ethereum-htlc",
"version": "0.0.12",
"description": "Hashed Timelock Contracts for Ethereum",
"main": "truffle.js",
"license": "GPL-3.0",
"repository": "chatch/hashed-timelock-contract-ethereum",
"bugs": {
"url": "https://github.com/chatch/hashed-timelock-contract-ethereum/issues"
},
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"ganache-start": "ganache-cli --networkId 4447 --port 7545",
"lint": "solium -d contracts/",
"test": "truffle test",
"ethereum-htlc": "truffle compile"
},
"keywords": [
"ethereum",
"hashed-timelock-contract",
"solidity",
"smart-contract"
],
"homepage": "https://github.com/chatch/hashed-timelock-contract-ethereum#README.md",
"dependencies": {
"@truffle/contract": "^4.2.14",
"openzeppelin-solidity": "^2.5.1"
},
"devDependencies": {
"eslint": "^7.5.0",
"ethlint": "^1.2.5",
"ganache-cli": "^6.12.2",
"truffle": "^5.1.36",
"truffle-assertions": "^0.9.2"
}
}