-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.16 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
{
"name": "dashphrase",
"version": "1.4.0",
"description": "Dash HD Wallet Recovery Phrase generator. Secure, lightweight, BIP-39-compatible Base2048 mnemonic word lists. Works in Node, Bundlers, and Browsers.",
"main": "dashphrase.js",
"browser": {
"crypto": false
},
"files": [
"./dashphrase.js",
"./jsconfig.json"
],
"scripts": {
"bump": "npm version -m \"chore(release): bump to v%s\"",
"fmt": "npx -p [email protected] -- prettier -w '**/*.{js,md}'",
"lint": "npx -p [email protected] -- tsc -p ./jsconfig.json",
"test": "node ./test.js",
"test-browser": "open ./index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashhive/dashphrase.js.git"
},
"keywords": [
"bip-0039",
"bip39",
"base2048",
"passphrase",
"recovery",
"phrase",
"word",
"list",
"aes",
"encryption",
"key",
"bip-39",
"wallet"
],
"author": "AJ ONeal <[email protected]> (https://coolaj86.com/)",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/dashhive/dashphrase.js/issues"
},
"homepage": "https://dashhive.github.io/dashphrase.js/"
}