-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
30 lines (30 loc) · 1.12 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
{
"name": "solidity-sigutils",
"version": "1.0.1",
"description": "A solidity library for verifying message multi-signatures",
"main": "index.js",
"repository": "[email protected]:dsys/solidity-sigutils.git",
"author": "[email protected]",
"license": "Apache-2.0",
"scripts": {
"start": "truffle develop",
"test": "truffle test",
"watch": "watchman-make -p 'contracts/**/*.sol' 'test/**/*.sol' --run 'npm test'",
"compile": "truffle compile",
"migrate": "truffle migrate --reset --compile-all --network development",
"migrate-rinkeby": "truffle migrate --reset --compile-all --network rinkeby",
"migrate-mainnet": "truffle migrate --compile-all --network mainnet",
"lint": "solium -d contracts/",
"fix": "solium --fix -d contracts/",
"gen-docs": "solmd contracts/SignatureUtils.sol --dest API.md && cat README.template.md API.md > README.md"
},
"devDependencies": {
"eth-gas-reporter": "^0.1.2",
"ganache-cli": "^6.1.0",
"solidity-docgen": "^0.1.0",
"solium": "^1.1.7",
"solmd": "^0.3.0",
"truffle": "^4.1.11",
"truffle-privatekey-provider": "^0.0.6"
}
}