forked from TovarishFin/hardhat-yul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.74 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
{
"name": "@skybit/hardhat-yul",
"version": "4.2.1",
"description": "Compile Yul smart contracts in Hardhat",
"repository": {
"type": "git",
"url": "git+https://github.com/SKYBITDev3/hardhat-yul.git"
},
"homepage": "https://github.com/SKYBITDev3/hardhat-yul",
"author": "SKYBIT",
"license": "MIT",
"main": "dist/index.js",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin",
"yul"
],
"scripts": {
"lint": "yarn prettier --check && yarn eslint",
"lint:fix": "yarn prettier --write && yarn eslint --fix",
"eslint": "eslint 'src/**/*.ts'",
"prettier": "prettier \"**/*.{js,md,json}\"",
"test": "mocha --recursive \"test/**/*.ts\" --exit",
"build": "tsc --build .",
"clean": "rimraf dist"
},
"files": [
"dist/*",
"src/*",
"LICENSE",
"README.md"
],
"dependencies": {
"@types/glob": "^8.1.0",
"glob": "^10.4.1",
"typescript": "~5.4.5",
"yulp": "^0.2.3"
},
"devDependencies": {
"@nomiclabs/hardhat-docker": "^2.0.2",
"@types/chai": "^4.3.16",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"chai": "^5.1.1",
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"fs-extra": "^11.2.0",
"hardhat": "2.22.4",
"mocha": "^10.4.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"solpp": "^0.11.5",
"ts-node": "^10.9.2"
},
"bugs": {
"url": "https://github.com/SKYBITDev3/hardhat-yul/issues"
},
"packageManager": "yarn@4.2.2",
"peerDependencies": {
"solc": "*"
}
}