-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.19 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
{
"name": "waxp-erc20",
"version": "1.0.0",
"description": "An `ERC20` standard token for WAXP",
"scripts": {
"compile": "npx truffle compile",
"test": "npx truffle test",
"coverage": "npx truffle run coverage",
"test-chain": "npx ganache-cli --deterministic",
"change-owner": "node utils/owner.js",
"send-funds": "node utils/sendFunds.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/worldwide-asset-exchange/waxp-erc20.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/worldwide-asset-exchange/waxp-erc20/issues"
},
"homepage": "https://github.com/worldwide-asset-exchange/waxp-erc20#readme",
"dependencies": {
"@openzeppelin/contracts": "^4.7.0",
"@openzeppelin/contracts-upgradeable": "^4.6.0"
},
"devDependencies": {
"@openzeppelin/truffle-upgrades": "^1.15.0",
"@truffle/hdwallet-provider": "^2.0.8",
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"ganache-cli": "^6.12.2",
"mocha": "^10.0.0",
"solidity-coverage": "^0.7.21",
"truffle": "^5.5.13",
"truffle-assertions": "^0.9.2",
"truffle-ledger-provider": "^1.0.3",
"truffle-plugin-verify": "^0.5.25"
}
}