-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
71 lines (71 loc) · 2.32 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
{
"name": "@1inch/multicall",
"version": "1.1.0",
"description": "High-weight optimized call-processor",
"repository": {
"type": "git",
"url": "ssh://git@github.com:1inch/multicall.git",
"directory": "@1inch/multicall"
},
"scripts": {
"build": "tsc",
"postbuild": "cp package.json dist && cp README.md dist",
"lint": "eslint ./src --ext .js,.ts",
"test": "jest --passWithNoTests",
"test:coverage": "jest --collectCoverage",
"typecheck": "tsc --noEmit --skipLibCheck",
"prettier": "prettier --write .",
"ci-pipeline": "yarn run lint && yarn run test && yarn run typecheck",
"set-npm-auth": "echo \"//npm.pkg.github.com/:_authToken=${NPM_AUTH_TOKEN}\" >> .npmrc",
"create-index": "cti src -b && npx replace-in-file \"export * from './abi';\" \" \" ./src/index.ts",
"release": "standard-version"
},
"dependencies": {
"ethers": "^6.13.1"
},
"devDependencies": {
"@1inch/eslint-config": "^1.4.2",
"@1inch/tsconfig": "^v1.0.2",
"@swc/core": "^1.3.102",
"@swc/jest": "0.2.26",
"@types/jest": "29.5.12",
"@typescript-eslint/eslint-plugin": "5.59",
"@typescript-eslint/parser": "5.51",
"babel-jest": "^29.7.0",
"create-ts-index": "^1.13.3",
"eslint": "8.41.0",
"eslint-config-prettier": "8.3",
"eslint-config-standard": "17",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.26",
"eslint-plugin-n": "16",
"eslint-plugin-prettier": "4",
"eslint-plugin-promise": "6",
"eslint-plugin-unused-imports": "2",
"husky": "^6.0.0",
"istanbul-badges-readme": "^1.2.1",
"jest": "29.7.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"replace": "^1.2.1",
"ts-loader": "^9.5.1",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.2",
"tslib": "^2.2.0",
"typescript": "^4.9"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn run typecheck"
}
},
"lint-staged": {
"*.{js,ts,md,json}": [
"yarn run prettier"
],
"*.{js,ts}": [
"yarn run lint"
]
}
}