-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1002 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
38
39
40
{
"name": "hangman",
"version": "1.0.0",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"ganache": "ganache-cli -d",
"ganache_fork": "ganache-cli -f $(node get_infura.js) -m \"$(node get_mnemonic.js)\"",
"test": "truffle test test/Registry-unit.js",
"call-mock": "truffle test test/Registry-Call-unit.js",
"call": "truffle test test/Registry-Call-Network.js"
},
"repository": {
"type": "git",
"url": ""
},
"author": "",
"license": "ISC",
"bugs": {
"url": ""
},
"homepage": "",
"keywords": [],
"description": "",
"devDependencies": {
"@gnosis.pm/mock-contract": "^3.0.7",
"ganache-cli": "6.4.3",
"ganache-time-traveler": "^1.0.5",
"openzeppelin-solidity": "2.3",
"truffle": "^5.0.19",
"truffle-assertions": "^0.9.2",
"bignumber.js": "github:frozeman/bignumber.js-nolookahead"
},
"dependencies": {
"dotenv": "^8.2.0",
"truffle-hdwallet-provider": "^1.0.17"
}
}