-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.16 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.16 KB
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
42
43
{
"name": "simple-multisig",
"version": "1.0.4",
"description": "Simple Ethereum multisig contract",
"main": "test/simplemultisig.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "truffle test",
"prettier:solidity": "./node_modules/.bin/prettier --write contracts/**/*.sol"
},
"repository": {
"type": "git",
"url": "git+https://github.com/christianlundkvist/simple-multisig.git"
},
"keywords": [
"Ethereum",
"Wallet"
],
"author": "christian.lundkvist@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/christianlundkvist/simple-multisig/issues"
},
"homepage": "https://github.com/christianlundkvist/simple-multisig#readme",
"devDependencies": {
"bluebird": "^3.7.0",
"eth-gas-reporter": "^0.2.12",
"eth-lightwallet": "^4.0.0",
"prettier": "^1.18.2",
"prettier-plugin-solidity": "^1.0.0-alpha.34",
"solhint-plugin-prettier": "0.0.3"
},
"dependencies": {
"@openzeppelin/contracts": "^2.3.0",
"@truffle/config": "^1.2.3",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"truffle-privatekey-provider": "^1.3.0",
"web3": "^1.2.1"
}
}