forked from chatch/hashed-timelock-contract-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "ethereum-htlc",
"version": "0.0.6",
"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": {
"deploy-kovan": "npm run prepare && truffle migrate --network kovan",
"deploy-ropsten": "npm run prepare && truffle migrate --network ropsten",
"prepare": "npm run publish-abi && npm run test",
"prepublish": "npm run publish-abi",
"publish-abi":
"rm -rf build/ && truffle compile && cp build/contracts/HashedTimelock*.json abi/",
"test": "truffle test"
},
"keywords": [
"ethereum",
"hashed-timelock-contract",
"solidity",
"smart-contract"
],
"homepage":
"https://github.com/chatch/hashed-timelock-contract-ethereum#README.md",
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"openzeppelin-solidity": "^1.9.0"
},
"devDependencies": {
"bluebird": "^3.5.1"
}
}