-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.6 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.6 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@depay/depay-evm-router",
"description": "DePay's EVM Web3 Payment Router.",
"version": "2.0.0",
"homepage": "https://depay.com",
"repository": {
"type": "git",
"url": "https://github.com/depayfi/depay-evm-router"
},
"keywords": [
"depay",
"evm",
"smart contract",
"payments",
"conversion",
"router",
"decentralized",
"defi",
"web3"
],
"files": [
"contracts",
"build"
],
"engines": {
"node": ">=10"
},
"devDependencies": {
"@depay/web3-blockchains": "^9.7.1",
"@depay/web3-client-evm": "^10.19.3",
"@depay/web3-exchanges-evm": "^13.11.0",
"@depay/web3-tokens-evm": "^10.4.3",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@typechain/ethers-v5": "^4.0.0",
"@types/chai": "^4.2.6",
"@types/mocha": "^5.2.7",
"@types/sinon-chai": "^3.2.9",
"chai": "^4.2.0",
"cross-fetch": "^3.1.5",
"decimal.js": "^10.2.1",
"dotenv": "^16.3.0",
"ethereum-waffle": "^3.0.2",
"ethers": "^5.0.8",
"hardhat": "^2.22.15",
"hardhat-typechain": "^0.3.5",
"import-toml": "1.0.0",
"mocha": "^6.2.2",
"mocha-chai-jest-snapshot": "^1.1.0",
"prettier": "2.8.6",
"ts-generator": "^0.1.1",
"ts-node": "^8.5.4",
"typechain": "^4.0.0",
"typescript": "^3.7.3"
},
"scripts": {
"lint": "yarn prettier ./test/*.ts --check",
"lint:fix": "yarn prettier ./test/*.ts --write",
"clean": "rimraf artifacts cache typechain",
"precompile": "yarn clean",
"compile": "npx hardhat compile",
"pretest": "yarn compile",
"test:arbitrum": "npx hardhat test test/arbitrum/* --config hardhat.config.arbitrum.ts",
"test:avalanche": "npx hardhat test test/avalanche/* --config hardhat.config.avalanche.ts",
"test:bsc": "npx hardhat test test/bsc/* --config hardhat.config.bsc.ts",
"test:ethereum": "npx hardhat test test/ethereum/* --config hardhat.config.ethereum.ts",
"test:fantom": "npx hardhat test test/fantom/* --config hardhat.config.fantom.ts",
"test:gnosis": "npx hardhat test test/gnosis/* --config hardhat.config.gnosis.ts",
"test:optimism": "npx hardhat test test/optimism/* --config hardhat.config.optimism.ts",
"test:polygon": "npx hardhat test test/polygon/* --config hardhat.config.polygon.ts",
"test:worldchain": "npx hardhat test test/worldchain/* --config hardhat.config.worldchain.ts",
"prepublishOnly": "yarn test",
"build": "npx hardhat compile",
"flatten": "rimraf flatten && waffle flatten"
},
"license": "BUSL-1.1",
"dependencies": {
"@openzeppelin/contracts": "4.9.3"
}
}