forked from ControlCplusControlV/hardhat-Yul
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 1.76 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": "@tovarishfin/hardhat-yul",
"version": "3.0.4",
"description": "Hardhat plugin to develop smart contracts in Yul",
"repository": {
"type": "git",
"url": "git+https://github.com/tovarishfin/hardhat-yul.git"
},
"homepage": "https://github.com/TovarishFin/hardhat-yul",
"author": "TovarishFin",
"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": {
"@nomiclabs/hardhat-docker": "^2.0.0",
"fs-extra": "^10.1.0",
"glob": "^8.0.3",
"solc": "^0.8.17",
"solpp": "^0.11.5",
"yulp": "^0.2.3"
},
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^18.8.2",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"chai": "^4.2.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"hardhat": "^2.0.0",
"mocha": "^10.0.0",
"prettier": "2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "~4.8.4"
},
"peerDependencies": {
"hardhat": "^2.0.0"
},
"bugs": {
"url": "https://github.com/tovarishfin/hardhat-yul/issues"
}
}