-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 901 Bytes
/
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
{
"name": "tan-shell",
"version": "1.0.0",
"description": "A remote shell controller using blockchain to pass data.",
"main": "",
"repository": "https://github.com/Spiderpowa/tan-shell",
"author": "Jimmy Hu",
"license": "MIT",
"scripts": {
"test": "truffle test",
"compile": "truffle compile",
"abigen:go": "jq '.abi' build/contracts/Shell.json > build/Shell.abi; abigen --abi build/Shell.abi --pkg tanshell --out contract.go",
"migrate": "truffle migrate --network tangerine-mainnet",
"migrate:testnet": "truffle migrate --network tangerine-testnet",
"migrate:ropsten": "truffle migrate --network ropsten",
"migrate:ethereum": "truffle migrate --network ethereim"
},
"dependencies": {
"openzeppelin-solidity": "^2.3.0",
"truffle": "^5.0.41",
"truffle-hdwallet-provider": "^1.0.17"
},
"devDependencies": {
"node-jq": "^1.10.3"
}
}