-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.36 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
{
"name": "@hanchon/evmos-signer",
"version": "1.0.0",
"description": "Evmos signer for secp256k1 and eth_secp256k1 private keys",
"license": "MIT",
"repository": "hanchon-live/evmos-signer",
"source": "src/signer.ts",
"main": "lib/signer.js",
"module": "./lib/signer.module.js",
"types": "lib/signer.d.ts",
"keywords": [
"evmos",
"ethermint",
"bech32",
"eth",
"blockchain",
"address",
"signer",
"wallet"
],
"files": [
"lib/**/*"
],
"author": "Hanchon <[email protected]>",
"scripts": {
"build": "microbundle",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.4",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"babel-jest": "^27.1.0",
"eslint": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.1.0",
"microbundle": "^0.13.3",
"prettier": "^2.5.1",
"typescript": "^4.4.2"
},
"dependencies": {
"secp256k1-native": "^1.1.2"
}
}