forked from paulmillr/micro-eth-signer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.53 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": "micro-eth-signer",
"version": "0.5.0",
"description": "Create, sign and validate Ethereum transactions & addresses with minimum deps. Supports EIP1559",
"type": "module",
"main": "index.js",
"module": "index.js",
"files": [
"index.js",
"index.d.ts",
"index.d.ts.map",
"index.ts",
"formatters.js",
"formatters.d.ts",
"formatters.d.ts.map",
"formatters.ts",
"tx-validator.js",
"tx-validator.d.ts",
"tx-validator.d.ts.map",
"tx-validator.ts"
],
"dependencies": {
"@noble/hashes": "~1.1.2",
"@noble/secp256k1": "~1.6.3",
"rlp": "3.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "22.0.0",
"@rollup/plugin-node-resolve": "13.3.0",
"micro-bmark": "0.1.3",
"micro-should": "0.1.4",
"prettier": "2.6.2",
"rollup": "2.75.5",
"typescript": "4.7.3"
},
"jest": {
"testRegex": "/test/.*?\\.ts",
"transform": {
"^.+\\.ts$": "ts-jest"
}
},
"author": "Paul Miller (https://paulmillr.com)",
"repository": {
"type": "git",
"url": "https://github.com/paulmillr/micro-eth-signer.git"
},
"license": "MIT",
"keywords": [
"ethereum",
"eth",
"create",
"sign",
"validate",
"transaction",
"address",
"tx",
"web3",
"ethers",
"micro",
"nano",
"signer"
],
"scripts": {
"build": "tsc && rollup -c rollup.config.js",
"bench": "node test/benchmark.js",
"lint": "prettier --print-width 100 --single-quote --check index.ts",
"test": "node test/test.js"
}
}