-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
37 lines (37 loc) · 964 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
27
28
29
30
31
32
33
34
35
36
37
{
"name": "multisignaturewallet",
"version": "1.0.0",
"description": "311 byte EIP712 Signing Compliant Delegate-Call Enabled MultiSignature Wallet for the Ethereum Virtual Machine",
"main": "scripts/build.js",
"directories": {
"test": "tests"
},
"scripts": {
"example": "parcel scripts/index.html",
"build:example": "parcel build scripts/index.html",
"test": "testeth ./tests/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SilentCicero/multisignaturewallet.git"
},
"keywords": [
"yul",
"multi",
"signature",
"wallet",
"ethereum",
"solidity",
"web3"
],
"author": "Nick Dodson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SilentCicero/multisignaturewallet/issues"
},
"homepage": "https://github.com/SilentCicero/multisignaturewallet#readme",
"devDependencies": {
"solc": "^0.5.8",
"testeth": "^0.1.4"
}
}