forked from Synthetixio/wei
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.89 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": "@kwenta/wei",
"version": "2.74.6",
"publishConfig": {
"access": "public"
},
"files": [
"src",
"build"
],
"repository": "kwenta/wei",
"description": "Convenient BigNumber library for web3",
"source": "./src/index.ts",
"main": "./build/index.js",
"module": "./build/index.js",
"browser": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"build": "tsc --build --verbose",
"test": "jest --coverage --no-cache",
"lint": "eslint --fix .",
"lint:check": "eslint .",
"pretty": "prettier --write .",
"pretty:check": "prettier --check .",
"postversion": "git push --follow-tags"
},
"author": "Matthew Conover <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kwenta/wei/issues"
},
"homepage": "https://github.com/kwenta/wei",
"dependencies": {
"big.js": "6.2.2",
"viem": "^1.19.3"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/big.js": "6.2.2",
"@types/jest": "29.4.2",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"eslint": "^8.34.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.4.2",
"prettier": "^2.8.8",
"typescript": "5.2.2"
},
"browserslist": [
"last 1 Chrome version",
"last 1 Firefox version",
"last 1 Edge version",
"last 1 Opera version"
],
"jest": {
"testMatch": [
"<rootDir>/**/*.test.{js,jsx,ts,tsx}"
],
"collectCoverageFrom": [
"<rootDir>/src/**/*.{js,jsx,ts,tsx}",
"!<rootDir>/src/**/*.d.{js,jsx,ts,tsx}"
],
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
}
},
"packageManager": "[email protected]"
}