diff options
Diffstat (limited to 'libs/bitcoinjs-bip38/package.json')
-rw-r--r-- | libs/bitcoinjs-bip38/package.json | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/libs/bitcoinjs-bip38/package.json b/libs/bitcoinjs-bip38/package.json new file mode 100644 index 0000000..480a5fa --- /dev/null +++ b/libs/bitcoinjs-bip38/package.json | |||
@@ -0,0 +1,38 @@ | |||
1 | { | ||
2 | "name": "bip38", | ||
3 | "version": "2.0.2", | ||
4 | "description": "BIP38 is a standard process to encrypt Bitcoin and crypto currency private keys that is impervious to brute force attacks thus protecting the user.", | ||
5 | "main": "index.js", | ||
6 | "keywords": [ | ||
7 | "bitcoin", | ||
8 | "crypto", | ||
9 | "cryptography", | ||
10 | "litecoin" | ||
11 | ], | ||
12 | "homepage": "http://cryptocoinjs.com/modules/currency/bip38/", | ||
13 | "author": "JP Richardson", | ||
14 | "dependencies": { | ||
15 | "bigi": "^1.2.0", | ||
16 | "browserify-aes": "^1.0.1", | ||
17 | "bs58check": "<3.0.0", | ||
18 | "buffer-xor": "^1.0.2", | ||
19 | "create-hash": "^1.1.1", | ||
20 | "ecurve": "^1.0.0", | ||
21 | "scryptsy": "^2.0.0" | ||
22 | }, | ||
23 | "devDependencies": { | ||
24 | }, | ||
25 | "repository": { | ||
26 | "url": "git@github.com:bitcoinjs/bip38.git", | ||
27 | "type": "git" | ||
28 | }, | ||
29 | "scripts": { | ||
30 | "browser-test": "mochify --wd -R spec --timeout 100000", | ||
31 | "build": "browserify index.js --standalone bitcoinjs-bip38 > /tmp/bitcoinjs-bip38.js", | ||
32 | "coverage": "istanbul cover _mocha -- --reporter list test/*.js", | ||
33 | "coveralls": "npm run-script coverage && coveralls < coverage/lcov.info", | ||
34 | "standard": "standard", | ||
35 | "test": "npm run standard && npm run unit", | ||
36 | "unit": "mocha --ui bdd --timeout 240000" | ||
37 | } | ||
38 | } | ||