forked from 1inch/1inch-v2-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1016 Bytes
/
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
{
"name": "1inch-v2-contracts",
"version": "1.0.0",
"description": "1InchExchange core contracts",
"repository": {
"type": "git",
"url": "[email protected]:1inch-exchange/1inch-v2-contracts.git"
},
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "^3.2.0"
},
"devDependencies": {
"eslint": "^7.12.1",
"eslint-config-standard": "^16.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.2",
"solc": "^0.6.12",
"solhint": "^3.3.1"
},
"scripts": {
"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",
"lint": "yarn lint:js && yarn lint:sol",
"lint:fix": "yarn lint:js:fix && yarn lint:sol:fix"
}
}