-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.12 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": "@dgma/hardhat-sol-bundler",
"version": "0.5.10",
"description": "Declarative deployment tool for smart contracts",
"main": "src/index.js",
"types": "src/index.d.ts",
"files": [
"plugins",
"src"
],
"keywords": [
"ethereum",
"smart-contracts",
"deployment",
"test",
"testing",
"tool",
"hardhat",
"sol-bundler"
],
"scripts": {
"test:unit": "jest",
"test:integration": "hardhat test",
"compile": "hardhat compile",
"lint": "eslint src/**/*.ts integration/**/*.ts",
"prepare": "husky",
"build:pkg": "tsc --project tsconfig.pkg.json",
"typecheck": "tsc --noEmit --project tsconfig.pkg.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dgma/hardhat-sol-bundler.git"
},
"homepage": "https://github.com/dgma/hardhat-sol-bundler#readme",
"author": {
"name": "Dogma Foundation"
},
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/dgma/hardhat-sol-bundler/issues"
},
"engines": {
"node": ">=18.12.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@openzeppelin/contracts": "^5.0.2",
"@types/chai": "^4.3.17",
"@types/jest": "^29.5.14",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"chai": "^4.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"solc": "^0.8.28",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"peerDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-verify": "^2.0.12",
"@openzeppelin/hardhat-upgrades": "^3.7.0",
"ethers": "^6.13.4",
"hardhat": "^2.22.17"
}
}