forked from paulmillr/scure-bip39
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 1.5 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
{
"name": "@metamask/scure-bip39",
"version": "2.1.1",
"description": "MetaMask fork of @scure/bip39: a secure, audited & minimal implementation of BIP39 mnemonic phrases",
"main": "./dist/index.js",
"files": [
"dist/"
],
"types": "./dist/index.d.ts",
"dependencies": {
"@noble/hashes": "~1.3.2",
"@scure/base": "~1.1.3"
},
"devDependencies": {
"@metamask/auto-changelog": "^2.6.1",
"@types/mocha": "^9.1.1",
"mocha": "^9.2.2",
"prettier": "^2.8.8",
"typescript": "~4.9.5"
},
"engines": {
"node": "^16.20 || ^18.16 || >=20"
},
"author": "Paul Miller (https://paulmillr.com)",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/scure-bip39.git"
},
"contributors": [
"Patricio Palladino <[email protected]>",
"Paul Miller (https://paulmillr.com)"
],
"license": "MIT",
"scripts": {
"build": "tsc",
"lint": "prettier --check 'src/**/*.ts' 'test/*.test.ts'",
"format": "prettier --write 'src/**/*.ts' 'test/*.test.ts'",
"test": "cd test && tsc && mocha bip39.test.js"
},
"keywords": [
"bip39",
"mnemonic",
"phrase",
"code",
"bip0039",
"bip-39",
"micro",
"scure",
"wordlist",
"noble"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"bugs": {
"url": "https://github.com/MetaMask/scure-bip39/issues"
},
"homepage": "https://github.com/MetaMask/scure-bip39#readme",
"directories": {
"test": "test"
}
}