-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathpackage.json
62 lines (62 loc) · 1.8 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
{
"name": "@nomicfoundation/hardhat-foundry",
"version": "1.1.3",
"description": "Hardhat plugin that adds Hardhat support to Foundry projects",
"repository": "github:nomicfoundation/hardhat",
"homepage": "https://github.com/nomicfoundation/hardhat/tree/main/packages/hardhat-foundry",
"author": "Nomic Foundation",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin",
"foundry"
],
"scripts": {
"lint": "pnpm prettier --check && pnpm eslint",
"lint:fix": "pnpm prettier --write && pnpm eslint --fix",
"eslint": "eslint 'src/**/*.ts'",
"prettier": "prettier \"**/*.{js,md,json}\"",
"pretest": "cd ../.. && pnpm build",
"test": "mocha --recursive \"test/**/*.ts\" --exit",
"build": "tsc --build .",
"prepublishOnly": "pnpm build",
"clean": "rimraf dist"
},
"files": [
"dist/src/",
"src/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@nomicfoundation/eslint-plugin-hardhat-internal-rules": "workspace:^",
"@nomicfoundation/eslint-plugin-slow-imports": "workspace:^",
"@types/chai": "^4.2.0",
"@types/mocha": ">=9.1.0",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "5.61.0",
"chai": "^4.2.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-mocha": "10.4.1",
"eslint-plugin-prettier": "3.4.0",
"hardhat": "workspace:^2.17.2",
"mocha": "^10.0.0",
"prettier": "2.4.1",
"rimraf": "^3.0.2",
"ts-node": "^10.8.0",
"typescript": "~5.0.0"
},
"peerDependencies": {
"hardhat": "workspace:^2.17.2"
},
"dependencies": {
"picocolors": "^1.1.0"
}
}