-
Notifications
You must be signed in to change notification settings - Fork 169
/
Copy pathpackage.json
72 lines (72 loc) · 1.88 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
{
"name": "@ethereum-waffle/compiler",
"description": "Compile solidity without the hassle.",
"version": "4.0.3",
"author": "Marek Kirejczyk <[email protected]> (http://ethworks.io)",
"repository": "[email protected]:EthWorks/Waffle.git",
"private": false,
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"src"
],
"keywords": [
"ethereum",
"smart-contracts",
"solidity",
"compiler",
"javascript",
"typescript",
"library"
],
"homepage": "https://github.com/EthWorks/Waffle",
"bugs": {
"url": "https://github.com/EthWorks/Waffle/issues"
},
"main": "dist/cjs/src/index.js",
"module": "dist/esm/src/index.ts",
"types": "dist/esm/src/index.d.ts",
"scripts": {
"test": "mocha",
"lint": "eslint '{src,test}/**/*.ts'",
"lint:fix": "eslint --fix '{src,test}/**/*.ts'",
"build": "rimraf ./dist && pnpm build:esm && pnpm build:cjs",
"build:esm": "tsc -p tsconfig.build.json --outDir dist/esm --module ES6",
"build:cjs": "tsc -p tsconfig.build.json --outDir dist/cjs"
},
"engines": {
"node": ">=10.0"
},
"dependencies": {
"@resolver-engine/imports": "^0.3.3",
"@resolver-engine/imports-fs": "^0.3.3",
"@typechain/ethers-v5": "^10.0.0",
"@types/mkdirp": "^0.5.2",
"@types/node-fetch": "^2.6.1",
"mkdirp": "^0.5.1",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@ethereum-waffle/chai": "workspace:*",
"@ethereum-waffle/provider": "workspace:*",
"@openzeppelin/contracts": "3.0.1",
"@types/fs-extra": "^9.0.4",
"ethers": "5.6.2",
"fs-extra": "^9.0.1",
"openzeppelin-solidity": "2.3.0",
"solc": "0.8.15",
"typechain": "^8.0.0",
"mocha": "^8.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.6.2",
"eslint": "^7.14.0"
},
"peerDependencies": {
"ethers": "*",
"solc": "*",
"typechain": "^8.0.0"
}
}