-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
78 lines (78 loc) · 2.26 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
{
"name": "@thanpolas/uniswap-chain-queries",
"prvate": false,
"version": "0.1.3",
"main": "./src/",
"description": "On chain queries for ERC20 Tokens, Uniswap V2, V2 clones and V3",
"homepage": "https://github.com/thanpolas/uniswap-chain-queries",
"bugs": "https://github.com/thanpolas/uniswap-chain-queries/issues",
"author": {
"name": "Thanos Polychronakis",
"email": "[email protected]"
},
"contributors": [
""
],
"repository": {
"type": "git",
"url": "https://github.com/thanpolas/uniswap-chain-queries"
},
"license": "ISC",
"engines": {
"node": ">=12"
},
"scripts": {
"test": "npm run eslint && npm run jest",
"eslint": "eslint src test",
"jest": "TZ=utc jest --ci --coverage && codecov",
"release": "release-it --ci",
"release:minor": "release-it minor --ci",
"release:major": "release-it major --ci"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"./src/*.js",
"./src/**/*.js"
],
"coverageReporters": [
"html",
"json"
],
"roots": [
"./test/unit"
],
"testEnvironment": "node",
"setupFilesAfterEnv": [
"jest-extended/all"
],
"globalSetup": "./test/lib/global-setup.test.js",
"testTimeout": 10000
},
"dependencies": {
"@thanpolas/crypto-utils": "^0.4.1",
"@thanpolas/univ3prices": "^3.0.2",
"ethers": "^6.7.1",
"jsbi": "^4.3.0",
"logality": "^3.1.3"
},
"devDependencies": {
"@types/jest": "29.5.5",
"codecov": "^3.8.3",
"eslint": "8.51.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jest": "27.4.2",
"eslint-plugin-jsdoc": "46.8.2",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-security": "1.7.1",
"expect": "29.7.0",
"jest": "29.7.0",
"jest-extended": "4.0.1",
"jest-junit": "16.0.0",
"prettier": "3.0.3",
"release-it": "14.11.5"
}
}