forked from Nifty-Island/wyvern-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.44 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
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
{
"name": "@nifty-island/wyvern-v3",
"version": "3.1.7",
"description": "Wyvern Protocol v3.1, Ethereum implementation",
"main": "dist/wrapper/wrapper.js",
"types": "dist/wrapper/wrapper.d.ts",
"files": [
"./dist",
"./contracts"
],
"scripts": {
"prepublish": "tsc && yarn compile",
"analyze": "scripts/analyze.sh",
"flatten": "scripts/flatten.sh",
"compile": "hardhat compile",
"coverage": "scripts/coverage.sh",
"test": "hardhat test wrapper/wrapper.test.ts",
"lint": "eslint ./wrapper --ext .ts",
"testrpc": "scripts/testrpc.sh"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Nifty-Island/wyvern-v3.git"
},
"author": "Wyvern Protocol Developers",
"license": "MIT",
"bugs": {
"url": "https://github.com/wyvernprotocol/wyvern-v3/issues"
},
"homepage": "https://github.com/wyvernprotocol/wyvern-v3#readme",
"devDependencies": {
"@babel/runtime": "^7.12.5",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^1.8.2",
"@tenderly/hardhat-tenderly": "^1.0.12",
"@typechain/ethers-v5": "^7.0.0",
"@typechain/hardhat": "^2.0.0",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.2",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"ethereum-waffle": "^3.0.2",
"ethers": "5.4.6",
"ethlint": "^1.2.5",
"hardhat": "^2.2.0",
"hardhat-abi-exporter": "^2.2.0",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-gas-reporter": "^1.0.4",
"lodash": "^4.17.20",
"openzeppelin-solidity": "^3.3.0",
"prettier": "^2.1.1",
"prettier-plugin-solidity": "^1.0.0-alpha.56",
"solidity-coverage": "^0.7.10",
"ts-node": "^9.0.0",
"typechain": "^5.0.0",
"typescript": "^4.0.2",
"web3": "^1.3.0"
},
"dependencies": {
"@openzeppelin/contracts": "^4.2.0",
"i": "^0.3.6",
"npm": "^7.22.0"
}
}