-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.57 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "tinyeth",
"version": "0.1.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"doc": "docs"
},
"scripts": {
"watch": "tsc --watch",
"build": "tsc --incremental",
"test-watch": "npm run build && jest --watch",
"test": "npm run unit",
"test-report": "npm run build && jest --reporters=\"default\" --collectCoverage --reporters=jest-junit",
"vitest": "vitest run",
"bun-test": "bun wiptest",
"unit": "npm run build && jest",
"int": "npm run build && jest -c jest.config.int.js",
"lint": "npx eslint ./ --fix",
"clean": "rm -rf ./dist/"
},
"jest-junit": {
"outputDirectory": "reports",
"outputName": "jest-junit.xml",
"ancestorSeparator": " › ",
"uniqueOutputName": "false",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/plugin-proposal-decorators": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"babel-jest": "^28.1.1",
"dotenv": "^16.0.1",
"eslint": "^8.11.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.1.0",
"node-fetch": "^2.6.7",
"prettier": "^2.6.1",
"vitest": "^0.18.0"
},
"dependencies": {
"@types/bn.js": "^5.1.0",
"@types/buffer-json": "^2.0.1",
"@types/elliptic": "^6.4.14",
"@types/ip6addr": "^0.2.3",
"@types/jest": "^27.0.1",
"@types/keccak": "^3.0.1",
"@types/secp256k1": "^4.0.3",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"bignumber.js": "^9.0.2",
"bn.js": "^5.2.0",
"buffer-json": "^2.0.0",
"bun-types": "^0.1.4",
"core-util-is": "^1.0.3",
"crc-32": "^1.2.2",
"dayjs": "^1.11.2",
"ecies-geth": "^1.6.4",
"eciesjs": "^0.3.14",
"elliptic": "^6.5.4",
"eth-ecies": "^1.0.6",
"exit-hook": "^2.2.1",
"fast-check": "^3.0.1",
"inversify": "^6.0.1",
"ip6addr": "^0.2.5",
"jest-junit": "^14.0.1",
"js-sha3": "^0.8.0",
"jsfuzz": "^1.0.15",
"keccak": "^3.0.2",
"reflect-metadata": "^0.1.13",
"secp256k1": "^4.0.3",
"snappyjs": "^0.7.0",
"typescript": "^4.4.2",
"typescript-logging": "^1.0.0"
},
"engines": {
"node": ">=18.3.0"
},
"volta": {
"node": "18.3.0"
}
}