-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "NavCoinPaperWallet",
"version": "1.0.2",
"description": "A paper wallet generator with BIP38 password encryption for NavCoin.",
"main": "main.js",
"build": {
"appId": "org.navcoin.paper",
"mac": {
"category": "finance"
}
},
"scripts": {
"start": "npm run browserify && npx electron .",
"pack": "npm run browserify && npx electron-builder --dir",
"dist": "npm run browserify && npx electron-builder",
"browserify": "npx browserify ./js/source.js -o ./js/scripts.js"
},
"repository": "https://github.com/navcoindev/paper-wallet",
"keywords": [
"NavCoin",
"NAV",
"Paper Wallet",
"Cryptocurrency",
"Bitcoin"
],
"author": "craigmacgregor",
"license": "CC0-1.0",
"devDependencies": {
"aes": "^0.1.0",
"bip38": "https://github.com/craigmacgregor/bip38/tarball/8e11c7da1d4df8a80b5aa32ed1457e474d911f20",
"browserify": "^14.3.0",
"coinkey": "^2.0.0",
"electron": "^1.8.2",
"electron-builder": "^20.8.1",
"qrcode-generator": "^1.2.0",
"secure-random": "^1.1.1",
"wif": "^2.0.6"
}
}