-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
56 lines (56 loc) · 1.83 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
{
"name": "@1inch/token-plugins",
"version": "1.3.0",
"description": "ERC20 extension enabling external smart contract based plugins to track balances of those users who opted-in to those plugins",
"repository": {
"type": "git",
"url": "[email protected]:1inch/token-plugins.git"
},
"bugs": {
"url": "https://github.com/1inch/token-plugins/issues"
},
"homepage": "https://github.com/1inch/token-plugins#readme",
"author": "1inch",
"license": "MIT",
"dependencies": {
"@1inch/solidity-utils": "3.5.5",
"@openzeppelin/contracts": "5.0.1"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "2.0.2",
"@nomicfoundation/hardhat-ethers": "3.0.5",
"@nomicfoundation/hardhat-verify": "2.0.2",
"@openzeppelin/test-helpers": "0.5.16",
"chai": "4.3.10",
"dotenv": "16.3.1",
"eslint": "8.56.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "16.4.0",
"eslint-plugin-promise": "6.1.1",
"ethers": "6.9.0",
"hardhat": "2.19.2",
"hardhat-deploy": "0.11.45",
"hardhat-gas-reporter": "1.0.9",
"rimraf": "5.0.5",
"solhint": "3.6.2",
"solidity-coverage": "0.8.5"
},
"scripts": {
"clean": "rimraf artifacts cache coverage coverage.json contracts/hardhat-dependency-compiler",
"coverage": "hardhat coverage",
"deploy": "hardhat deploy --network",
"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 --parallel",
"test:ci": "hardhat test"
},
"files": [
"contracts",
"test/behaviors/*.js"
]
}