UNPKG

1.68 kBJSONView Raw
1{
2 "name": "@nomiclabs/hardhat-ethers",
3 "version": "2.0.6",
4 "description": "Hardhat plugin for ethers",
5 "homepage": "https://github.com/nomiclabs/hardhat/tree/master/packages/hardhat-ethers",
6 "repository": "github:nomiclabs/hardhat",
7 "author": "Nomic Labs LLC",
8 "license": "MIT",
9 "main": "internal/index.js",
10 "types": "internal/index.d.ts",
11 "keywords": [
12 "ethereum",
13 "smart-contracts",
14 "hardhat",
15 "hardhat-plugin",
16 "ethers.js"
17 ],
18 "scripts": {
19 "lint": "yarn prettier --check && yarn eslint",
20 "lint:fix": "yarn prettier --write && yarn eslint --fix",
21 "eslint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
22 "prettier": "prettier \"**/*.{js,md,json}\"",
23 "test": "mocha --recursive \"test/**/*.ts\" --exit",
24 "build": "tsc --build .",
25 "clean": "rimraf dist internal types *.{d.ts,js}{,.map} build-test tsconfig.tsbuildinfo"
26 },
27 "files": [
28 "dist/src/",
29 "src/",
30 "internal/",
31 "types/",
32 "*.d.ts",
33 "*.d.ts.map",
34 "*.js",
35 "*.js.map",
36 "LICENSE",
37 "README.md"
38 ],
39 "devDependencies": {
40 "@types/chai": "^4.2.0",
41 "@types/mocha": "^9.1.0",
42 "@types/node": "^12.0.0",
43 "@typescript-eslint/eslint-plugin": "4.29.2",
44 "@typescript-eslint/parser": "4.29.2",
45 "chai": "^4.2.0",
46 "eslint": "^7.29.0",
47 "eslint-config-prettier": "8.3.0",
48 "eslint-plugin-import": "2.24.1",
49 "eslint-plugin-prettier": "3.4.0",
50 "ethers": "^5.0.0",
51 "hardhat": "^2.0.0",
52 "mocha": "^9.2.0",
53 "prettier": "2.4.1",
54 "rimraf": "^3.0.2",
55 "ts-node": "^8.1.0",
56 "typescript": "~4.5.2"
57 },
58 "peerDependencies": {
59 "ethers": "^5.0.0",
60 "hardhat": "^2.0.0"
61 }
62}