-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
76 lines (76 loc) · 2.16 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
{
"name": "@thanpolas/univ3prices",
"version": "3.0.2",
"main": "./src/",
"description": "Library to calculate Uniswap V3 ratios (prices) from token pairs",
"homepage": "https://github.com/thanpolas/univ3prices",
"bugs": "https://github.com/thanpolas/univ3prices/issues",
"author": {
"name": "Thanos Polychronakis",
"email": "[email protected]"
},
"contributors": [
""
],
"repository": {
"type": "git",
"url": "https://github.com/thanpolas/univ3prices"
},
"license": "ISC",
"engines": {
"node": ">=12"
},
"scripts": {
"test": "eslint src test && jest",
"release": "release-it --ci",
"release:minor": "release-it minor --ci",
"release:major": "release-it major --ci",
"eslint": "eslint src test",
"jest": "TZ=utc jest --ci --coverage && codecov"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"./src/*.js",
"./src/**/*.js"
],
"coverageReporters": [
"html",
"json"
],
"roots": [
"./test/app",
"./test/unit"
],
"testEnvironment": "node",
"setupFilesAfterEnv": [
"jest-extended"
],
"globalSetup": "./test/lib/global-setup.test.js",
"testTimeout": 10000
},
"dependencies": {
"@thanpolas/crypto-utils": "^0.3.1",
"invariant": "^2.2.4",
"jsbi": "^3.2.2"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"codecov": "^3.8.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jsdoc": "^36.0.8",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-security": "^1.4.0",
"expect": "^27.1.0",
"jest": "^27.1.0",
"jest-extended": "^0.11.5",
"jest-junit": "^12.2.0",
"prettier": "^2.3.2",
"release-it": "^14.11.5"
}
}