-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
71 lines (71 loc) · 1.96 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
{
"name": "@nomiclabs/hardhat-waffle",
"version": "2.0.6",
"description": "Hardhat plugin to test smart contracts with Waffle",
"homepage": "https://github.com/NomicFoundation/hardhat-waffle",
"repository": "github:NomicFoundation/hardhat-waffle",
"author": "Nomic Labs LLC",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin",
"ethers.js"
],
"scripts": {
"lint": "yarn prettier --check && yarn eslint",
"lint:fix": "yarn prettier --write && yarn eslint --fix",
"eslint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"prettier": "prettier \"**/*.{js,md,json}\"",
"test": "mocha --recursive \"test/**/*.ts\" --exit",
"build": "tsc --build .",
"prepublishOnly": "yarn build",
"clean": "rimraf dist",
"version": "yarn changeset version"
},
"files": [
"dist/src/",
"src/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@changesets/cli": "^2.25.2",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@types/chai": "^4.2.0",
"@types/fs-extra": "^5.1.0",
"@types/mocha": "^9.1.0",
"@types/node": "^18.11.9",
"@types/sinon-chai": "^3.2.3",
"@types/web3": "1.0.19",
"@typescript-eslint/eslint-plugin": "4.29.2",
"@typescript-eslint/parser": "4.29.2",
"chai": "^4.2.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.24.1",
"eslint-plugin-prettier": "3.4.0",
"ethereum-waffle": "^4.0.10",
"ethers": "^5.0.0",
"fs-extra": "^10.1.0",
"hardhat": "^2.0.0",
"mocha": "^10.0.0",
"prettier": "2.4.1",
"rimraf": "^3.0.2",
"ts-node": "^8.1.0",
"typescript": "~4.5.2"
},
"peerDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@types/sinon-chai": "^3.2.3",
"ethereum-waffle": "*",
"ethers": "^5.0.0",
"hardhat": "^2.0.0"
},
"publishConfig": {
"access": "public"
}
}