-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
85 lines (85 loc) · 2.91 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
{
"name": "@1inch/permit-signed-approvals-utils",
"version": "1.5.2",
"description": "Utils library for EIP-2612: permit – 712-signed approvals",
"main": "index.js",
"scripts": {
"prebuild": "rm -rf dist && yarn run test:coverage && yarn run make-badges",
"build": "tsc",
"postbuild": "cp package.json dist && cp README.md dist",
"lint": "eslint ./src --ext .js,.ts",
"release": "standard-version",
"test": "jest && yarn run test:e2e",
"test:e2e": "hardhat test",
"test:coverage": "jest --collectCoverage",
"typecheck": "tsc --noEmit --skipLibCheck",
"prettier": "prettier --write .",
"make-badges": "istanbul-badges-readme",
"ci-pipeline": "yarn run lint && yarn run test && yarn run typecheck"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:1inch/permit-signed-approvals-utils.git",
"directory": "@1inch/permit-signed-approvals-utils"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/1inch/permit-signed-approvals-utils/issues"
},
"homepage": "https://github.com/1inch/permit-signed-approvals-utils#readme",
"dependencies": {
"ethers": "^6.13.1"
},
"devDependencies": {
"@1inch/solidity-utils": "3.5.5",
"@babel/core": "7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-typescript": "7.23.3",
"@nomicfoundation/hardhat-chai-matchers": "2.0.3",
"@nomicfoundation/hardhat-ethers": "3.0.5",
"@nomicfoundation/hardhat-network-helpers": "1.0.10",
"@openzeppelin/contracts": "5.0.2",
"@types/jest": "29.5.11",
"@types/node": "20.11.4",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "6.19.0",
"babel-jest": "29.7.0",
"chai": "4.3.7",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard-with-typescript": "43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-unused-imports": "3.0.0",
"hardhat": "2.19.4",
"hardhat-dependency-compiler": "1.1.3",
"hardhat-deploy": "0.11.45",
"husky": "8.0.3",
"istanbul-badges-readme": "^1.2.1",
"jest": "29.7.0",
"lint-staged": "15.2.0",
"prettier": "3.2.2",
"standard-version": "^9.2.0",
"ts-loader": "9.5.1",
"ts-mockito": "2.6.1",
"ts-node": "10.9.2",
"tslib": "2.6.2",
"typescript": "5.3.3",
"yarn-audit-fix": "^10.0.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn run typecheck"
}
},
"lint-staged": {
"*.{js,ts,md,json}": [
"yarn run prettier"
],
"*.{js,ts}": [
"yarn run lint"
]
}
}