forked from 1inch/solidity-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.99 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@1inch/solidity-utils",
"version": "2.2.13",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/1inch/solidity-utils.git"
},
"license": "MIT",
"scripts": {
"prebuild": "rimraf ./dist && cti src -b",
"build": "tsc -p tsconfig.publish.json",
"postbuild": "echo done",
"prepublish": "yarn build",
"coverage": "hardhat coverage",
"format": "yarn format-ts && yarn format-sol",
"format-ts": "prettier '**/*.ts' --write",
"format-sol": "prettier '**/*.sol' --write",
"lint": "yarn run lint:ts && yarn run lint:sol",
"lint:fix": "yarn run lint:ts:fix && yarn run lint:sol:fix",
"lint:ts": "eslint . --ext .ts",
"lint:ts:fix": "eslint . --fix --ext .ts",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"lint:sol:fix": "solhint --max-warnings 0 \"contracts/**/*.sol\" --fix",
"test": "hardhat test --parallel",
"test:ci": "hardhat test",
"typecheck": "tsc --noEmit --skipLibCheck",
"typechain": "hardhat typechain"
},
"dependencies": {
"@metamask/eth-sig-util": "4.0.1",
"@nomicfoundation/hardhat-network-helpers": "1.0.6",
"@nomiclabs/hardhat-ethers": "2.1.1",
"@openzeppelin/contracts": "4.7.3",
"@uniswap/permit2-sdk": "^1.2.0",
"ethereumjs-util": "7.1.5",
"ethers": "5.7.1",
"hardhat": "2.11.2"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "1.0.3",
"@typechain/ethers-v5": "10.1.0",
"@typechain/hardhat": "6.1.3",
"@types/chai": "4.3.3",
"@types/eth-sig-util": "2.1.1",
"@types/ethereumjs-util": "6.1.0",
"@types/mocha": "9.1.1",
"@types/node": "18.7.21",
"@typescript-eslint/eslint-plugin": "5.38.0",
"@typescript-eslint/parser": "5.38.0",
"acquit": "1.2.1",
"chai": "4.3.6",
"commander": "9.4.0",
"create-ts-index": "1.14.0",
"cross-spawn": "7.0.3",
"dotenv": "16.0.2",
"eslint": "8.23.1",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.2.5",
"eslint-plugin-promise": "6.0.1",
"eslint-plugin-standard": "5.0.0",
"ethereumjs-wallet": "1.0.2",
"hardhat-gas-reporter": "1.0.9",
"prettier": "2.7.1",
"prettier-plugin-solidity": "1.0.0-beta.24",
"rimraf": "3.0.2",
"shx": "0.3.4",
"solhint": "3.3.7",
"solidity-coverage": "0.8.2",
"ts-node": "10.9.1",
"typechain": "8.1.0",
"typescript": "4.8.3"
},
"bin": {
"solidity-utils-docify": "utils/docify.utils.js",
"test-docgen": "utils/test-docgen.js",
"imports-list": "utils/file-dependencies.js"
},
"bugs": {
"url": "https://github.com/1inch/solidity-utils/issues"
},
"homepage": "https://github.com/1inch/solidity-utils#readme",
"author": "1inch",
"description": "Solidity and TS utils",
"files": [
"./dist",
"./*.MD",
"./utils",
"contracts/*.sol",
"contracts/interfaces",
"contracts/libraries",
"contracts/mocks"
]
}