forked from paxosglobal/usdp-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.51 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
36
37
38
39
40
41
42
43
44
45
{
"name": "pax",
"version": "0.0.1",
"description": "Paxos-issued USD-collateralized ERC20 stablecoin",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"truffle-abi": "cat build/contracts/PAXImplementationV2.json | jq -c .abi > PAX.abi",
"truffle-bin": "cat build/contracts/PAXImplementationV2.json | jq -r .bytecode > PAX.bin",
"compile": "truffle compile",
"coverage": "solidity-coverage",
"flatten-impl": "truffle-flattener ./contracts/PAXImplementationV2.sol > ./flattened/PAXImplementationV2.sol",
"flatten-proxy": "truffle-flattener ./contracts/zeppelin/AdminUpgradeabilityProxy.sol > ./flattened/AdminUpgradeabilityProxy.sol",
"ganache": "ganache-cli",
"migrate": "truffle migrate",
"solium": "solium -d contracts/ --fix",
"test": "truffle test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paxosglobal/pax-contracts.git"
},
"author": "PAXOS",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/paxosglobal/pax-contracts/issues"
},
"homepage": "https://github.com/paxosglobal/pax-contracts#readme",
"dependencies": {},
"devDependencies": {
"chai": "^4.2.0",
"eth-sig-util": "^2.5.2",
"ganache-cli": "^6.8.2",
"@openzeppelin/test-helpers": "^0.5.4",
"@openzeppelin/upgrades": "^2.4.0",
"solc": "^0.4.24",
"solidity-coverage": "^0.7.1",
"solium": "^1.2.5",
"truffle": "^5.1.10",
"truffle-flattener": "^1.4.2",
"@truffle/hdwallet-provider": "1.0.29"
}
}