-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.64 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.64 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
{
"name": "@bitriel/bitrielswap-periphery",
"version": "1.1.11",
"description": "Periphery smart contract for Bitriel",
"license": "MIT",
"keywords": [
"bitrielswap",
"periphery"
],
"repository": {
"type": "git",
"url": "https://github.com/bitriel/bitrielswap-periphery.git"
},
"engines": {
"node": ">=10"
},
"files": [
"build/contracts/*.json",
"artifacts/contracts/**/*.json",
"!artifacts/contracts/**/*.dbg.json",
"!artifacts/contracts/test/**/*",
"contracts",
"!contracts/test",
"types"
],
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"clean": "hardhat clean",
"coverage": "RUN_COVERAGE=1 hardhat coverage"
},
"devDependencies": {
"@bitriel/bitrielswap-core": "^1.0.1",
"@bitriel/bitrielswap-sdk": "^1.3.17",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.10",
"@nomiclabs/hardhat-etherscan": "^2.1.4",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^3.4.1-solc-0.7",
"@truffle/hdwallet-provider": "^2.0.1",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.8",
"@uniswap/v2-core": "^1.0.1",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.4",
"hardhat": "^2.6.0",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-deploy": "^0.8.11",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-typechain": "^0.3.5",
"mocha-chai-jest-snapshot": "^1.1.3",
"solidity-coverage": "^0.7.16",
"ts-node": "^10.2.1",
"typechain-target-ethers-v5": "^5.0.1",
"typescript": "^4.4.2"
}
}