-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 1.81 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
{
"name": "evm-bn",
"description": "Convert fixed-point numbers to ethers big numbers and vice-versa",
"version": "1.2.0",
"author": {
"name": "Paul Razvan Berg",
"url": "https://paulrberg.com"
},
"dependencies": {
"@ethersproject/bignumber": "^5.7.0",
"from-exponential": "^1.1.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/mocha": "^10.0.1",
"@types/mocha-each": "^2.0.0",
"@types/node": "^18.15.10",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"earljs": "^0.2.3",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"mocha": "^10.2.0",
"mocha-each": "^2.0.1",
"nyc": "^15.1.0",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"files": [
"/dist/**/*.d.ts",
"/dist/**/*.d.ts.map",
"/dist/**/*.js",
"/dist/**/*.js.map",
"CHANGELOG.md"
],
"keywords": [
"bignumber",
"blockchain",
"ethereum",
"ethers",
"evm",
"javascript",
"number-formatting"
],
"license": "MIT",
"main": "./dist/index.js",
"peerDependencies": {
"@ethersproject/bignumber": "5.x"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc --build \"./tsconfig.prod.json\"",
"clean": "rimraf coverage dist",
"coverage": "pnpm nyc mocha",
"lint": "pnpm lint:ts && pnpm prettier:check && pnpm typecheck",
"lint:ts": "eslint --ext .ts .",
"prepack": "pnpm build",
"prettier:check": "prettier --check \"**/*.{js,json,md,ts,yml}\"",
"prettier:write": "prettier --write \"**/*.{js,json,md,ts,yml}\"",
"test": "mocha",
"typecheck": "tsc --incremental false --noEmit"
},
"types": "./dist/index.d.ts"
}