-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.11 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.11 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
{
"name": "tutorial-multisigwallet-js",
"version": "1.0.0",
"description": "Gnosis Multisig wallet tutorial with JS",
"main": "utils.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"ganache": "./scripts/ganache.sh",
"compile": "cd node_modules/multisig-wallet-gnosis && npx truffle compile --all",
"install:kernel": "npm install -g ijavascript && ijsinstall",
"start": "ijsnotebook",
"postinstall": "./scripts/postinstall.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngyam/tutorial-multisigwallet-js.git"
},
"keywords": [
"gnosis",
"multisig",
"wallet",
"tutorial",
"node",
"jupyter"
],
"author": "Adam Nagy (ngy.am.zs@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ngyam/tutorial-multisigwallet-js/issues"
},
"homepage": "https://github.com/ngyam/tutorial-multisigwallet-js#readme",
"dependencies": {
"ganache-cli": "^6.4.4",
"multisig-wallet-gnosis": "git+https://github.com/gnosis/MultiSigWallet.git#v1.6.0",
"truffle": "^5.0.29",
"web3": "^1.2.0"
}
}