forked from 1inch/solidity-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.97 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
{
"name": "@1inch/solidity-utils",
"version": "1.3.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/1inch/solidity-utils.git"
},
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "^4.4.0",
"ethereumjs-wallet": "^1.0.2"
},
"devDependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.8",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.15",
"chai": "^4.3.4",
"cross-spawn": "^7.0.3",
"dotenv": "^10.0.0",
"eslint": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-standard": "^5.0.0",
"hardhat": "^2.7.0",
"hardhat-deploy": "^0.9.14",
"hardhat-gas-reporter": "^1.0.6",
"rimraf": "^3.0.2",
"shx": "^0.3.3",
"solc": "^0.8.10",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.17"
},
"bin": {
"solidity-utils-docify": "utils/docify.utils.js"
},
"scripts": {
"build": "rimraf ./dist && mkdir dist && shx cp -R js ./dist/js && shx cp -R utils ./dist/utils && shx cp package.json ./dist && shx cp README.md ./dist && shx cp -R ./contracts ./dist/contracts && shx rm -rf dist/contracts/mocks dist/contracts/tests",
"coverage": "hardhat coverage",
"lint": "yarn run lint:js && yarn run lint:sol",
"lint:fix": "yarn run lint:js:fix && yarn run lint:sol:fix",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"lint:sol:fix": "solhint --max-warnings 0 \"contracts/**/*.sol\" --fix",
"test": "hardhat test"
},
"bugs": {
"url": "https://github.com/1inch/solidity-utils/issues"
},
"homepage": "https://github.com/1inch/solidity-utils#readme",
"directories": {
"test": "test"
},
"author": "1inch",
"description": "Solidity and JS utils"
}