-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 970 Bytes
/
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
{
"name": "@identity-box/mnemonic-passphrase",
"version": "1.0.0",
"description": "A library to generate a mnemonic passphrase",
"type": "module",
"main": "index.mjs",
"files": [
"mnemonic",
"cli",
"index.mjs"
],
"publishConfig": {
"access": "public"
},
"bin": {
"mnemonic-passphrase": "./cli/mnemonic-passphrase.mjs"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/identity-box/mnemonic-passphrase.git"
},
"keywords": [
"mnemonic",
"passphrase"
],
"author": "Marcin Czenko",
"license": "ISC",
"bugs": {
"url": "https://github.com/identity-box/mnemonic-passphrase/issues"
},
"homepage": "https://github.com/identity-box/mnemonic-passphrase#readme",
"dependencies": {
"commander": "^8.3.0",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"jest": "^27.4.7"
}
}