-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1.02 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
31
32
33
34
35
{
"name": "oneledgercontract",
"version": "0.1.0",
"description": "Oneledger Contract",
"main": "truffle-config.js",
"scripts": {
"compile": "truffle compile",
"ganache": "ganache-cli -p 8546 -e 100000000000000000000 > /dev/null 2>&1 & echo $!",
"test": "truffle test --network development",
"test-scenarios": "truffle test --network development scenarios/*",
"test-ganache": "bash scripts/ganache_test.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oneledger/OLT.git"
},
"author": "stephen",
"license": "ISC",
"bugs": {
"url": "https://github.com/oneledger/OLT/issues"
},
"homepage": "https://github.com/oneledger/OLT#readme",
"dependencies": {
"@digix/tempo": "git+https://github.com/DigixGlobal/tempo.git",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"ganache-cli": "6.1.0",
"openzeppelin-solidity": "1.10.0",
"truffle": "^4.1.11"
},
"devDependencies": {
"solidity-coverage": "^0.5.4"
}
}